int recv(int s, void *buf, size_t len, int flags);
int recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, socklen_t *fromlen);
int recvmsg(int s, struct msghdr *msg, int flags);
���� from�� NULL�� �ƴϰ� ������ ���� �������� �ƴ϶��, ������ ���� �ּҰ� ä������. ���� fromlen�� ��-��� �����̸� from�� ���õ� ������ ũ��� �ʱ�ȭ�Ǹ�, ��ȯ�� ����Ǵ� �ּ��� ���� ũ�⸦ ����Ű�� ������ �����ȴ�.
recv ȣ���� ���� ������ ���Ͽ����� ���ȴ�. ( connect(2)�� �����϶�) ���� from ���ڸ� ���� recvfrom�� �����ϴ�.
���Ͽ� ������ ���ٸ�, ������ �� ȣ���� ������ ���ö����� ��ٸ��ԵǸ�, ���� ������ �ͺ���ŷ( fcntl(2) ����)�̾��ٸ� ������� -1�� �ǰ� errno�� EAGAIN���� �����Ѵ�. �Ϲ������� ������ �� ȣ����� �䱸�� ���� ��� ä��� ��ٸ��� ���ٴ� ä���� ���� �����Ѵ�.
select(2) �� poll(2) ȣ���� �����Ͱ� �� �����Ͽ������� �����ϱ� ���� ���ȴ�.
�� �Լ����� ���� flags ���ڴ� ���� ���� �� �ϳ� �̻��� OR�� �����ȴ�.:
������ ����Ų ���� ��Ŷ�� ��ȿ ������(payload)�� msg_iovec�� ���� ���� �����ͷ� ���ȴ�. ������ ����Ų �����ͱ��� ���� ���� �ּҴ� msg_name�� ���� �����ȴ�.
#define SO_EE_ORIGIN_NONE 0 #define SO_EE_ORIGIN_LOCAL 1 #define SO_EE_ORIGIN_ICMP 2 #define SO_EE_ORIGIN_ICMP6 3 struct sock_extended_err { u_int32_t ee_errno; /* error number */ u_int8_t ee_origin; /* where the error originated */ u_int8_t ee_type; /* type */ u_int8_t ee_code; /* code */ u_int8_t ee_pad; u_int32_t ee_info; /* additional information */ u_int32_t ee_data; /* other data */ /* More data may follow */ }; struct sockaddr *SO_EE_OFFENDER(struct sock_extended_err *);
������ ���� ��, �̰��� ä�� ���� �ִ� ���� �������� ���� ����� ������ ����Ͽ� �ٽ� ��������� ���� ���� �۵��� ���ȴ�.
recvmsg�� ������ �Ķ���͵��� ���� �ּ�ȭ�ϱ� ���� msghdr ����ü�� ����Ѵ�. �� ����ü�� <sys/socket.h>�� ���ǵ� ��ó�� ������ ���� ���¸� ������ �ִ�.
struct msghdr { void * msg_name; /* optional address */ socklen_t msg_namelen; /* size of address */ struct iovec * msg_iov; /* scatter/gather array */ size_t msg_iovlen; /* # elements in msg_iov */ void * msg_control; /* ancillary data, see below */ socklen_t msg_controllen; /* ancillary data buffer len */ int msg_flags; /* flags on received message */ };
msg_name�� msg_namelen�� ������ ������� �ʾ����� ������ �ּҸ� ��Ÿ����. msg_name�� � �̸��� ������ �ʰų� �ʿ����� �ʴٸ� null �����ͷν� �־�����. msg_iov�� msg_iovlen �ʵ�� readv(2)ó�� scatter-gather ��ġ�� ����Ų��. msg_controllen�� ���̸� ������ �ִ� msg_control�� ������ ��Ÿ ���� �����Ϳ� ���õ� �ٸ� �������� ��� ���� ���۸� ����Ų��. recvmsg�� ȣ��� ��, msg_controllen�� msg_control���� �̿��� �� �ִ� ������ ���̸� �����ؾ� �Ѵ�. �������� ȣ� ���� ��ȯ�� ���ӵ� ���� �������� ���̸� �����ؾ� �Ѵ�.
������ ���´� �Ʒ��� ���� ������ ���´�.
struct cmsghdr { socklen_t cmsg_len; /* data byte count, including hdr */ int cmsg_level; /* originating protocol */ int cmsg_type; /* protocol-specific type */ /* followed by u_char cmsg_data[]; */ };
���� �����ʹ� cmsg(3)���� ���ǵ� ��ũ�ο� ���ؼ��� ���ٵǾ�� �Ѵ�.
���� ���, �������� �� ���� ������ IP �ɼ��̳� Unix ���Ͽ��� ���� ����ڵ�ó�� Ȯ��� �������� �����ϱ� ���� ����Ѵ�.
msg_flags �ʵ�� ���� ������ ���� ��ȯ�� �� �����ȴ�. MSG_EOR�� end-of-record�� ��Ÿ����. ��ȯ�� �����Ͱ� ���ڵ��� ���̴�. (�Ϲ������� SOCK_SEQPACKET ������ ������ �� ���ȴ�.) MSG_TRUNC�� �����ͱ��� �� �κ��� ���ȴٴ� ���� ��Ÿ����. �ֳ��ϸ� �����ͱ��� �����Ǵ� ���ۺ��� ũ�� �����̴�.
MSG_CTRUNC�� ��� ���� �����͵��� ���� ������ ���� ���� ������ �����ϱ� ������ ���ȴٴ� ���� ��Ÿ����. MSG_OOB�� ���ϰų� out-of-band ������ �Ҵٴ� ���� ����Ű�� ���� ��ȯ�ȴ�. MSG_ERRQUEUE�� � �����͵� ���� �ʾ����� ���� ���� ť���� ������ Ȯ��Ǿ��ٴ� ���� ��Ÿ����.