Slide 10
Slide 10 text
Socket: サーバー側
▌やること
l socket()
l アドレスを設定 bind()
l リクエスト受付 listen()
l リクエストを確⽴ accept()
l read()/write()
l close()
int sock = socket(AF_INET, SOCK_STREAM, 0);
bind(sock, アドレス, len);
listen(sock, 128);
while(1) {
int fd = accept(sock, NULL, NULL);
write(fd, buf, buflen);
read(fd, buf, buflen);
close(fd);
}
close(sock);