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_symbian.cpp

    r2283 r2327  
    6767 
    6868/* IP multicast is also not supported. */ 
    69 const pj_uint16_t pj_IP_MULTICAST_IF    = 0xFFFF; 
    70 const pj_uint16_t pj_IP_MULTICAST_TTL   = 0xFFFF; 
    71 const pj_uint16_t pj_IP_MULTICAST_LOOP  = 0xFFFF; 
    72 const pj_uint16_t pj_IP_ADD_MEMBERSHIP  = 0xFFFF; 
    73 const pj_uint16_t pj_IP_DROP_MEMBERSHIP = 0xFFFF; 
     69const pj_uint16_t PJ_IP_MULTICAST_IF    = 0xFFFF; 
     70const pj_uint16_t PJ_IP_MULTICAST_TTL   = 0xFFFF; 
     71const pj_uint16_t PJ_IP_MULTICAST_LOOP  = 0xFFFF; 
     72const pj_uint16_t PJ_IP_ADD_MEMBERSHIP  = 0xFFFF; 
     73const pj_uint16_t PJ_IP_DROP_MEMBERSHIP = 0xFFFF; 
    7474 
    7575/* Flags */ 
Note: See TracChangeset for help on using the changeset viewer.