Ignore:
Timestamp:
Dec 19, 2008 2:36:08 PM (15 years ago)
Author:
bennylp
Message:

Added note about what may be causing WSAEINVAL error in pj_inet_pton() with IPv6

File:
1 edited

Legend:

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

    r2331 r2389  
    289289                af, NULL, (LPSOCKADDR)&sock_addr, &addr_len); 
    290290        if (rc != 0) { 
     291            /* If you get rc 130022 Invalid argument (WSAEINVAL) with IPv6, 
     292             * check that you have IPv6 enabled (install it in the network 
     293             * adapter). 
     294             */ 
    291295            pj_status_t status = pj_get_netos_error(); 
    292296            if (status == PJ_SUCCESS) 
Note: See TracChangeset for help on using the changeset viewer.