Ignore:
Timestamp:
Jul 20, 2007 8:08:30 AM (17 years ago)
Author:
bennylp
Message:

Ticket #354: build PJLIB as dynamic libraries (.DSO) in Symbian

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_media.c

    r1403 r1405  
    244244 
    245245        /* Create and bind RTP socket. */ 
    246         status = pj_sock_socket(PJ_AF_INET, PJ_SOCK_DGRAM, 0, &sock[0]); 
     246        status = pj_sock_socket(pj_AF_INET(), pj_SOCK_DGRAM(), 0, &sock[0]); 
    247247        if (status != PJ_SUCCESS) { 
    248248            pjsua_perror(THIS_FILE, "socket() error", status); 
     
    259259 
    260260        /* Create and bind RTCP socket. */ 
    261         status = pj_sock_socket(PJ_AF_INET, PJ_SOCK_DGRAM, 0, &sock[1]); 
     261        status = pj_sock_socket(pj_AF_INET(), pj_SOCK_DGRAM(), 0, &sock[1]); 
    262262        if (status != PJ_SUCCESS) { 
    263263            pjsua_perror(THIS_FILE, "socket() error", status); 
Note: See TracChangeset for help on using the changeset viewer.