sctp_recvmsg - receive a message from an SCTP socket
Lb libc
The address of the sender is held in the
Fa from
argument with
Fa fromlen
specifying its size.
At the completion of a successful
sctp_recvmsg ();
call
Fa from
will hold the address of the peer and
Fa fromlen
will hold the length of that address.
Note that
the address is bounded by the inital value of
Fa fromlen
which is used as an in/out variable.
The length of the message Fa msg to be received is bounded by Fa len . If the message is too long to fit in the users receive buffer, then the Fa flags argument will not have the MSG_EOF flag applied. If the message is a complete message then the Fa flags argument will have MSG_EOF set. Locally detected errors are indicated by a return value of -1 with errno set accordingly. The Fa flags argument may also hold the value MSG_NOTIFICATION When this occurs it indicates that the message received is not from the peer endpoint, but instead is a notification from the SCTP stack (see sctp(4) for more details). Note that no notifications are ever given unless the user subscribes to such notifications using the SCTP_EVENTS socket option.
If no messages are available at the socket then
sctp_recvmsg ();
normally blocks on the reception of a message or NOTIFICATION, unless the
socket has been placed in non-blocking I/O mode.
The
select(2)
system call may be used to determine when it is possible to
receive a message.
The Fa sinfo argument is defined as follows.
struct sctp_sndrcvinfo { u_int16_t sinfo_stream; /* Stream arriving on */ u_int16_t sinfo_ssn; /* Stream Sequence Number */ u_int16_t sinfo_flags; /* Flags on the incoming message */ u_int32_t sinfo_ppid; /* The ppid field */ u_int32_t sinfo_context; /* context field */ u_int32_t sinfo_timetolive; /* not used by sctp_recvmsg */ u_int32_t sinfo_tsn; /* The transport sequence number */ u_int32_t sinfo_cumtsn; /* The cumulative acknowledgment point */ sctp_assoc_t sinfo_assoc_id; /* The association id of the peer */ };
The Fa sinfo->sinfo_ppid is an opaque 32 bit value that is passed transparently through the stack from the peer endpoint. Note that the stack passes this value without regard to byte order.
The Fa sinfo->sinfo_flags field may include the following:
#define SCTP_UNORDERED 0x0400 /* Message is un-ordered */
The SCTP_UNORDERED flag is used to specify that the message arrived with no specific order and was delivered to the peer application as soon as possible. When this flag is absent the message was delivered in order within the stream it was received.
Fa sinfo->sinfo_stream is the SCTP stream that the message was received on. Streams in SCTP are reliable (or partially reliable) flows of ordered messages.
The Fa sinfo->sinfo_context field is used only if the local application set an association level context with the SCTP_CONTEXT socket option. Optionally a user process can use this value to index some application specific data structure for all data coming from a specific association.
The Fa sinfo->sinfo_ssn will hold the stream sequence number assigned by the peer endpoint if the message is not unordered. For unordered messages this field holds an undefined value.
The Fa sinfo->sinfo_tsn holds a transport sequence number (TSN) that was assigned to this message by the peer endpoint. For messages that fit in or less than the path MTU this will be the only TSN assigned. Note that for messages that span multiple TSNs this value will be one of the TSNs that was used on the message.
The Fa sinfo->sinfo_cumtsn holds the current cumulative acknowledgment point of the transport association. Note that this may be larger or smaller than the TSN assigned to the message itself.
The Fa sinfo->sinfo_assoc_id is the unique association identification that was assigned to the association. For one-to-many (SOCK_SEQPACKET) type sockets this value can be used to send data to the peer without the use of an address field. It is also quite useful in setting various socket options on the specific association (see sctp(4)).
The Fa sinfo->info_timetolive field is not used by Fa sctp_recvmsg .
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |