This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Raw socket behaviour



recv and recvfrom seem to exhibit a strange behavior when attempting to
receive from raw sockets.  An example of this is a raw ICMP socket.  The
code appears somewhat as follows (error checking removed for
simplification).

int sockfd, size, len;
struct sockaddr_in sin;
u_char buf[1024];

sockfd = socket(AF_INET, SOCK_RAW, IPPROTO_ICMP);
size=recvfrom(sockfd, buf, sizeof(buf), 0, (struct sockaddr *)&sin, &len);

recvfrom fails, with the error: Not owner

Now I can _write_ an ICMP packet without any problem at all, however can't
read them.  Am I missing something peculiar regarding cygwin32 ?  This is
being run as a user with administrator privileges (as mentioned, writing
works fine).

Also curious as to whether or not there will ever be select() support for
non-connected sockets?  select() on the ICMP socket doesn't work, so there
doesn't seem to be a way to time-out the recv() without using setjmp() and
alarm() (if the recv ever actually worked at all).

Thanks in advance,

- Oliver

 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   Secure Networks Incorporated.  Calgary, Alberta, Canada, (403) 262-9211

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]