RECV

Section: ������ ���α׷��� �Ŵ��� (2)
Updated: 2002-12-31
Index
Return to Main Contents
 

�̸�

recv, recvfrom, recvmsg - �������κ��� �޼����� �޴´�.  

����

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

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);  

����

recvfrom �׸��� recvmsg�� ���� �������̵� �ƴϵ� ���Ͽ��� �޼����� �ޱ� ���� ���ȴ�. �׸��� ���Ͽ� �ִ� �����͸� �ޱ� ���� ���ȴ�.

���� from�� NULL�� �ƴϰ� ������ ���� �������� �ƴ϶��, �޼����� ���� �ּҰ� ä������. ���� fromlen�� ��-��� �����̸� from�� ���õ� ������ ũ��� �ʱ�ȭ�Ǹ�, ��ȯ�� ����Ǵ� �ּ��� ���� ũ�⸦ ����Ű�� ������ �����ȴ�.

recv ȣ���� ���� ������ ���Ͽ����� ���ȴ�. ( connect(2)�� �����϶�) �׸��� from ���ڸ� ���� recvfrom�� �����ϴ�.

���Ͽ� �޽����� ���ٸ�, �޽����� �޴� ȣ���� �޽����� ���ö����� ��ٸ��ԵǸ�, ���� ������ �ͺ���ŷ( fcntl(2) ����)�̾��ٸ� ������� -1�� �ǰ� errno�� EAGAIN���� �����Ѵ�. �Ϲ������� �޽����� �޴� ȣ����� �䱸�� ���� ��� ä��� ��ٸ��� ���ٴ� ä���� ���� �����Ѵ�.

select(2) �� poll(2) ȣ���� �����Ͱ� �� �����Ͽ������� �����ϱ� ���� ���ȴ�.

�޴� �Լ����� ���� flags ���ڴ� ���� ���� �� �ϳ� �̻��� OR�� �����ȴ�.:

MSG_OOB
�� �÷��״� �Ϲ��� ������ ��Ʈ������ ���� �ʴ� out-of-band �����͸� �䱸�Ѵ�. ��� ���������� ���� ������ ť�� �Ӹ��� ���� �����͸� ���´�. �׸��� �� �÷��״� �׷� �������ݿ����� ���� �� ����.
MSG_PEEK
�� �÷��״� ť���� �����͸� �������� �ʰ� �޴� ť�� ���ۿ������� �����͸� ��ȯ�ϴ� �ޱ� �۵��� �ϵ��� �Ѵ�. �׷���, �������� �ޱ� ȣ���� ���� �����͸� ��ȯ�Ѵ�.
MSG_WAITALL
�� �÷��״� �䱸�� ���� �� �� ������ �۵��� ����ŷ�ϵ��� �䱸�Ѵ�. �׷���, ���� ��ȣ�� �߻��ϰų�, ������ ������ �߻��ϰų�, Ȥ�� ���� �����Ͱ� ���� ��ȯ�� �����Ϳ� �ٸ� Ÿ���̶�� �䱸�� �ͺ��� ���� �����Ͷ� ��ȯ�Ѵ�.
MSG_TRUNC
���޵� ������ ���̺��� ����� ��Ŷ�� ���� ���̸� ��ȯ�Ѵ�. ��Ŷ ���Ͽ����� ��ȿ�ϴ�.
MSG_ERRQUEUE
�� �÷��״� ���� ���� ť�� ����� �������� �޵��� �Ѵ�. ������ ��������(IPv4 IP_RECVERR�� ����)�� �����ϴ� ������ ���� ���� �޽����� ���޵ȴ�. ����ڴ� ����� ũ���� ���۸� �����ؾ� �Ѵ�. ���� �ڼ��� ������ cmsg(3)�� ip(7)�� �����϶�.

������ �߻���Ų ���� ��Ŷ�� ��ȿ ������(payload)�� msg_iovec�� ���� ���� �����ͷ� ���޵ȴ�. ������ �߻���Ų �����ͱ׷��� ���� ���� �ּҴ� msg_name�� ���� �����ȴ�.

���� ������ ���ؼ��� �ƹ��� �ּҵ� ���޵��� �ʴ´�. (�̰��� cmsghdr�� ����� cmsg_len���� Ȯ���� �� �ִ�.) ������ �߻��ϸ�, MSG_ERRQUEUE�� msghdr�� �����ȴ�. �ϳ��� ������ ���޵� ��, ��� ���� ���� ������ ���� ����� ������ ������� �ٽ� ���������. �׸���, �̰��� ���� ���� �������� ���޵� ���̴�. ������ sock_extended_err ����ü�� �����ȴ�.
#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 *);

ee_errno�� ����� ������ ���� ��ȣ�� �����Ѵ�. ee_origin�� ������ ���۵ƴ� ���� �ڵ��̴�. �ٸ� �ʵ���� �������ݿ� �����Ѵ�. ��ũ�� SOCK_EE_OFFENDER�� ���� �޼����� �־��� �����Ϳ��� ������ �߻��� ��Ʈ�� ��ü�� �ּҿ� ���� �����͸� ��ȯ�Ѵ�. ���� �� �ּҰ� �˷����� �ʾҴٸ�, sockaddr�� ����� sa_family�� AF_UNSPEC�� �����ϸ� sockaddr�� �ٸ� �ʵ���� ���ǵ��� �ʴ´�. ������ �߱��� ��Ŷ�� ���� ������ó�� ���޵ȴ�.
���� �������� ����, � �ּҵ� ���޵��� �ʴ´�. ( �̰��� cmsghdr�� ����� cmsg_len�� Ȯ���� �� �ִ�.) ������ �ޱ� ����, MSG_ERRQUEUE�� msghdr�� �����ȴ�.

������ ���޵� ��, �̰��� ä�� ���� �ִ� ���� �������� ���� ����� ������ ����Ͽ� �ٽ� ��������� ���� ���� �۵��� ���޵ȴ�.

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�� � �����͵� ���� �ʾ����� ���� ���� ť���� ������ Ȯ��Ǿ��ٴ� ���� ��Ÿ����.  

��ȯ��

�̵� ȣ���� ���� ����Ʈ���� ���� ��ȯ�Ѵ�. ������ �߻��ϸ� -1�� ��ȯ�Ѵ�.  

����

�̰͵��� ���� ������ �߻��ϴ� ��� ǥ�� �����̴�. �߰����� �������� �������� ���� �Ʒ����� �߻��ǰ� ��ȯ�ȴ�; �ش� �޴��� ���������� �����϶�.
EBADF
���� s�� ��ȿ�� ����ڰ� �ƴϴ�.
ENOTCONN
������ ���� ������ �������������� ������� �ʾҴ�. ( connect(2)�� accept(2)�� �����϶�.)
ENOTSOCK
���� s�� ������ ����Ű�� �ʴ´�.
EAGAIN
������ non-blocking�̰� �޴� �۵��� ����ŷ�Ǿ� �ְų� �޴� Ÿ�Ӿƿ��� �����Ǿ� �ְ� �����͸� �ޱ� ���� Ÿ�Ӿƿ��� ������.
EINTR
�ޱⰡ �����͸� �̿��ϱ� ���� ���޵� ��ȣ�� ���� ���ͷ�Ʈ �Ǿ���.
EFAULT
�޴� ���� �����Ͱ� ���μ��� �ּ� ���� �ܸ̿� ����Ű�� �ִ�.
EINVAL
��ȿ�� ���ڰ� ���޵Ǿ���.
 

ȣȯ

4.4BSD (�� �Լ��� 4.2BSD���� ó�� ��Ÿ����.)  

����

���� �־��� ������ glibc �����̴�. Single Unix Specification�� `ssize_t' Ÿ���� ��ȯ���� ������ �� �ܿ� ����. (�ݸ鿡 BSD 4.* �׸��� libc4, libc5�� ��� `int' �̴�.) flags ���ڴ� BSD 4.* ���� `int' ������, libc4�� libc5�� `unsigned int' �̴�. len ���ڴ� BSD 4.*���� `int' ������, libc4�� libc5�� 'size_t' �̴�. fromlen ���ڴ� BSD 4.*, libc4, libc5���� `int *' �̴�. ���� `socklen_t *'�� POSIX�� ���� ���������. accept(2)�� �����϶�.  

���� �׸�

fcntl(2), read(2), select(2), getsockopt(2), socket(2), cmsg(3)  

����

������ <skyeyes@soback.kornet.net> 2000�� 12�� 11��
�ѱ� Manpage ������Ʈ (http://man.kldp.org) 2004�� 3�� 25��


 

Index

�̸�
����
����
��ȯ��
����
ȣȯ
����
���� �׸�
����

This document was created by man2html, using the manual pages.
Time: 01:22:18 GMT, March 26, 2004