CVSROOT:        /cvs/src
Module name:    src
Changes by:     cori...@sourceware.org  2009-01-20 11:16:59

Modified files:
        winsup/cygwin  : ChangeLog autoload.cc fhandler.h 
                         fhandler_socket.cc wincap.cc wincap.h 
        winsup/cygwin/include/cygwin: socket.h 

Log message:
        * autoload.cc (WSAIoctl): Reintroduce.
        (WSASendMsg): Define.
        * fhandler.h (class fhandler_socket): Change definition of recv_internal
        and send_internal to take WSAMSG pointer as parameter.
        * fhandler_socket.cc (WSAID_WSARECVMSG): Define.
        (LPFN_WSARECVMSG): Define.
        (WSASendMsg): Declare.
        (get_ext_funcptr): New function to fetch address of WSARecvMsg.
        (fhandler_socket::recv_internal): Take just a LPWSAMSG parameter.
        Change code accordingly.  If control information is requested,
        fetch address of WSARecvMsg and use that instead of WSARecvFrom.
        (fhandler_socket::recvfrom): Change return type to ssize_t as
        declared in fhandler.h.  Accommodate changes to recv_internal.
        (fhandler_socket::recvmsg): Ditto.  Make sure that control information
        is only requested if system, address family, and socket type support it.
        (fhandler_socket::send_internal): Take just a LPWSAMSG parameter
        and the flags.  Change code accordingly.  If control information is
        provided, use WSASendMsg instead of WSASendTo.
        (fhandler_socket::sendto): Drop useless comment.  Accommodate changes
        to send_internal.
        (fhandler_socket::sendmsg): Ditto.  Make sure that control information
        is only provided if system, address family, and socket type support it.
        * wincap.h (wincaps::has_recvmsg): New element.
        (wincaps::has_sendmsg): New element
        * wincap.cc: Implement above elements throughout.
        * include/cygwin/socket.h (CMSG_ALIGN): Phrase in terms of alignment
        of type struct cmsghdr.

Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/cygwin/ChangeLog.diff?cvsroot=src&r1=1.4355&r2=1.4356
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/cygwin/autoload.cc.diff?cvsroot=src&r1=1.156&r2=1.157
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/cygwin/fhandler.h.diff?cvsroot=src&r1=1.353&r2=1.354
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/cygwin/fhandler_socket.cc.diff?cvsroot=src&r1=1.234&r2=1.235
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/cygwin/wincap.cc.diff?cvsroot=src&r1=1.89&r2=1.90
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/cygwin/wincap.h.diff?cvsroot=src&r1=1.73&r2=1.74
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/cygwin/include/cygwin/socket.h.diff?cvsroot=src&r1=1.24&r2=1.25

Reply via email to