Они имеют те же имена, что и соответствующие #define
s в стеке сокетов C BSD, за исключением Socket::
спереди. (И для протокола: чтобы ответить на точный вопрос, который вы задали, я должен сказать "в ext/socket/socket.c
" в дереве исходного кода Ruby.) Итак:
>> require 'socket'
=> true
>> Socket::MSG_PEEK
=> 2
Вероятно, вы можете увидеть это, набрав man 2 recv
, хотя вам может понадобиться сначала установить пакет man-страниц. Есть также онлайн справочные страницы, см. Возможно: man 2 recv here .
На данный момент, вот что вам нужно, это параметры Posix, взятые из справочной страницы NetBSD . В Linux доступно гораздо больше. При работе в Linux Ruby определяет дополнительные символы, в противном случае они могут быть неопределенными в зависимости от хоста. (Спасибо, mark4o .)
The flags argument to a recv call is formed by or'ing one or more of the
values:
MSG_OOB process out-of-band data
MSG_PEEK peek at incoming message
MSG_WAITALL wait for full request or error
The MSG_OOB flag requests receipt of out-of-band data that would not be
received in the normal data stream. Some protocols place expedited data
at the head of the normal data queue, and thus this flag cannot be used
with such protocols. The MSG_PEEK flag causes the receive operation to
return data from the beginning of the receive queue without removing that
data from the queue. Thus, a subsequent receive call will return the
same data. The MSG_WAITALL flag requests that the operation block until
the full request is satisfied. However, the call may still return less
data than requested if a signal is caught, an error or disconnect occurs,
or the next data to be received is of a different type than that
returned.