Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
サーバーにはN個のローカルIPがあります。それらの1つを使用してソケット接続を作成する必要があります。どうやってやるの ?
fd = socket(AF_INET, SOCK_STREAM, 0); connect(fd, (struct sockaddr*)addr, sizeof(*addr)); // ...
bind()接続する前に、ソケットを適切なローカル アドレスに割り当てます。
bind()