Ignore:
Timestamp:
Sep 27, 2008 9:35:34 AM (16 years ago)
Author:
bennylp
Message:

Fixed ticket #644 and #648: incorrect muticast related socket constant names, missing ws2tcpip.h include causing build error on Mingw, and error building on Visual Studio 6 due to PJ_SOCK_HAS_GETADDRINFO being declared accidentally.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/sock_bsd.c

    r2283 r2327  
    116116const pj_uint16_t PJ_SO_RCVBUF  = SO_RCVBUF; 
    117117const pj_uint16_t PJ_SO_SNDBUF  = SO_SNDBUF; 
    118 const pj_uint16_t pj_IP_MULTICAST_IF    = IP_MULTICAST_IF; 
    119 const pj_uint16_t pj_IP_MULTICAST_TTL   = IP_MULTICAST_TTL; 
    120 const pj_uint16_t pj_IP_MULTICAST_LOOP  = IP_MULTICAST_LOOP; 
    121 const pj_uint16_t pj_IP_ADD_MEMBERSHIP  = IP_ADD_MEMBERSHIP; 
    122 const pj_uint16_t pj_IP_DROP_MEMBERSHIP = IP_DROP_MEMBERSHIP; 
     118const pj_uint16_t PJ_IP_MULTICAST_IF    = IP_MULTICAST_IF; 
     119const pj_uint16_t PJ_IP_MULTICAST_TTL   = IP_MULTICAST_TTL; 
     120const pj_uint16_t PJ_IP_MULTICAST_LOOP  = IP_MULTICAST_LOOP; 
     121const pj_uint16_t PJ_IP_ADD_MEMBERSHIP  = IP_ADD_MEMBERSHIP; 
     122const pj_uint16_t PJ_IP_DROP_MEMBERSHIP = IP_DROP_MEMBERSHIP; 
    123123 
    124124 
Note: See TracChangeset for help on using the changeset viewer.