Changeset 4392 for pjproject/branches/1.x/pjlib/src/pjlib-test/ssl_sock.c
- Timestamp:
- Feb 27, 2013 11:42:24 AM (12 years ago)
- Location:
- pjproject/branches/1.x
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/1.x
- Property svn:mergeinfo changed
/pjproject/trunk merged: 4247-4249
- Property svn:mergeinfo changed
-
pjproject/branches/1.x/pjlib/src/pjlib-test/ssl_sock.c
r3553 r4392 1330 1330 } 1331 1331 1332 #if 0 && (!defined(PJ_SYMBIAN) || PJ_SYMBIAN==0) 1333 pj_status_t pj_ssl_sock_ossl_test_send_buf(pj_pool_t *pool); 1334 static int ossl_test_send_buf() 1335 { 1336 pj_pool_t *pool; 1337 pj_status_t status; 1338 1339 pool = pj_pool_create(mem, "send_buf", 256, 256, NULL); 1340 status = pj_ssl_sock_ossl_test_send_buf(pool); 1341 pj_pool_release(pool); 1342 return status; 1343 } 1344 #else 1345 static int ossl_test_send_buf() 1346 { 1347 return 0; 1348 } 1349 #endif 1332 1350 1333 1351 int ssl_sock_test(void) 1334 1352 { 1335 1353 int ret; 1354 1355 PJ_LOG(3,("", "..test ossl send buf")); 1356 ret = ossl_test_send_buf(); 1357 if (ret != 0) 1358 return ret; 1336 1359 1337 1360 PJ_LOG(3,("", "..get cipher list test"));
Note: See TracChangeset
for help on using the changeset viewer.