Ignore:
Timestamp:
Aug 30, 2007 1:49:33 PM (17 years ago)
Author:
bennylp
Message:

More Symbian works:

  • changed PJ_VERSION to pj_get_version() in pjsua-lib
  • added .mmp file for symbian_sound.cpp
  • allow pj_gethostip() in Symbian to return 127.0.0.1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/addr_resolv_symbian.cpp

    r1405 r1426  
    128128        len = sizeof(a); 
    129129        status = pj_sock_getsockname(fd, &a, &len); 
    130         if (status != PJ_SUCCESS) { 
     130        if (status != PJ_SUCCESS || a.sin_addr.s_addr==0) { 
    131131            pj_sock_close(fd); 
     132            /* May return 127.0.0.1 */ 
    132133            return status; 
    133134        } 
Note: See TracChangeset for help on using the changeset viewer.