Changeset 7024


Ignore:
Timestamp:
Oct 11, 2001, 9:25:20 PM (24 years ago)
Author:
sandervl
Message:

* empty log message *

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/changelog

    r7019 r7024  
    1 /* $Id: changelog,v 1.1741 2001-10-11 17:04:40 sandervl Exp $ */
     1/* $Id: changelog,v 1.1742 2001-10-11 19:25:20 sandervl Exp $ */
    22
    33 2001-10-11: Sander van Leeuwen <sandervl@xs4all.nl>
     
    1010                o Forward WM_SYSCOMMAND to Parent (for scrollbar control window
    1111                  with size grip style)
    12     - WSOCK32:  o Fake IP_HDRINCL & IP_TTL
     12    - WSOCK32:  o Implemented IP_HDRINCL, IP_TTL & IP_TOS for set/getsockopt
     13    - WS2_32:   o Translate IPPROTO_IP options in getsockopt before calling
     14                  wsock32
    1315
    1416 2001-10-11: Patrick Haller <patrick.haller@innotek.de>
  • trunk/include/ws2tcpip.h

    r6990 r7024  
    1717#define IP_DONTFRAGMENT_WS2        14 /* don't fragment IP datagrams */
    1818
     19#define IP_OPTIONS_OS2              1    /* buf/ip_opts; set/get IP options */
     20#define IP_MULTICAST_IF_OS2         2    /* u_char; set/get IP multicast i/f  */
     21#define IP_MULTICAST_TTL_OS2        3    /* u_char; set/get IP multicast ttl */
     22#define IP_MULTICAST_LOOP_OS2       4    /* u_char; set/get IP multicast loopback */
     23#define IP_ADD_MEMBERSHIP_OS2       5    /* ip_mreq; add an IP group membership */
     24#define IP_DROP_MEMBERSHIP_OS2      6    /* ip_mreq; drop an IP group membership */
     25#define IP_HDRINCL_OS2              7    /* int; header is included with data */
     26#define IP_TOS_OS2                  8    /* int; IP type of service and preced. */
     27#define IP_TTL_OS2                  9    /* int; IP time to live */
     28#define IP_RECVOPTS_OS2             10   /* bool; receive all IP opts w/dgram */
     29#define IP_RECVRETOPTS_OS2          11   /* bool; receive IP opts for response */
     30#define IP_RECVDSTADDR_OS2          12   /* bool; receive IP dst addr w/dgram */
     31#define IP_RETOPTS_OS2              13   /* ip_opts; set/get IP options */
     32#define IP_RECVTRRI_OS2             14   /* bool; receive token ring routing inf */
     33
    1934#endif  /* _WS2TCPIP_H_ */
    2035
Note: See TracChangeset for help on using the changeset viewer.