소켓이란?

소켓 주소 구조

소켓 인터페이스 개요

image.png

socket 함수

#include <sys/types.h>
#include <sys/socket.h>

int socket(int domain, int type, int protocol);
// 정상적인 경우 디스크립터를 리턴한다 (양수). 아닐 경우 -1을 리턴한다.

connect 함수