/* * made by so_sal * http://sosal.tistory.com/ */ #include //소켓 관련 헤더 int socket( int __domain, int __type, int __protocol) domain :: AF_INET :: 가장 흔히 사용되는 ARPA 인터넷 프로토콜 AF_UNIX :: 유닉스 내부 프로토콜 AF_ISO :: 국제 표준 협회 (International Standards Organization) 프로토콜 /usr/include/Linux/socket.h라는 파일에 더 많은 도메인이 있습니다. 대게 AF_INET을 사용합니다. type :: SOCK_STREAM :: TCP 기반의 신뢰적, 순차적 양방향 형의 소켓을 사용 SOCK_DGRAM :: UDP ..