linux socket常用関数小結 2021-12-08 ======== TCP ======== TCP_Server socket() bind() listen() accept() write() read() close()とshutdown() TCP_Client socket() connect() send()とrecv() close()とshutdown() ======== UDP ======== UDP_Server socket() bind() sendto()とrecvfrom() close()とshutdown() UDP_Client