• BSD Socket 通信


    Berkeley sockets is an application programming interface (API) for Internet sockets and Unix domain sockets, used for inter-process communication (IPC). 

    BSD sockets cknowledging the first implementation in the Berkeley Software Distribution.

    插座桥接应用层与传输层

    ----------Server--------

    插排 ServerSocket ss = new ServerSocket(int port);

    插口插线Socket s =  ss.accept();

    插口拔线 s.close();

    插排销毁 ss.close();

    ----------Client--------

    插口插线 Socket s = new Socket(String host, int port);

    插口拔线 s.cloes();

    服务器插座的插口供多个客户端使用

    一个端口对应一个服务器插座

    通讯结束后需要拔掉插座,否则插口被占用

  • 相关阅读:
    Loadrunner日志设置与查看
    Mysqlfunc.c
    loadrunner生成随机uuid的方法
    数据库连接
    FAQ_2
    JAVA VUser
    FAQ_1
    LoadRunner中的Web 函数列表
    MySQL性能诊断与调优
    LoadRunner书籍推荐
  • 原文地址:https://www.cnblogs.com/zno2/p/4642022.html
Copyright © 2020-2023  润新知