Ignore:
Timestamp:
May 1, 2007 10:42:22 AM (17 years ago)
Author:
bennylp
Message:

Ported PJLIB and PJLIB-TEST to Symbian!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pjlib-test/sock_perf.c

    r1235 r1238  
    159159    PJ_LOG(3,("", "...benchmarking socket " 
    160160                  "(2 sockets, packet=512, single threaded):")); 
    161      
     161 
     162    /* Disable this test on Symbian since UDP connect()/send() failed 
     163     * with S60 3rd edition (including MR2). 
     164     * See http://www.pjsip.org/trac/ticket/264 
     165     */     
     166#if !defined(PJ_SYMBIAN) || PJ_SYMBIAN==0 
    162167    /* Benchmarking UDP */ 
    163168    rc = sock_producer_consumer(PJ_SOCK_DGRAM, 512, LOOP, &bandwidth); 
    164169    if (rc != 0) return rc; 
    165170    PJ_LOG(3,("", "....bandwidth UDP = %d KB/s", bandwidth)); 
     171#endif 
    166172 
    167173    /* Benchmarking TCP */ 
Note: See TracChangeset for help on using the changeset viewer.