- Timestamp:
- Oct 7, 2007 6:04:28 AM (17 years ago)
- Location:
- pjproject/trunk/pjnath/src/pjstun-srv-test
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjnath/src/pjstun-srv-test/main.c
r1405 r1485 116 116 pj_init(); 117 117 pjlib_util_init(); 118 pjnath_init(); 118 119 pj_caching_pool_init(&cp, &pj_pool_factory_default_policy, 0); 119 120 -
pjproject/trunk/pjnath/src/pjstun-srv-test/turn_usage.c
r1405 r1485 1391 1391 client_handle_peer_data(client, bytes_read); 1392 1392 1393 } else if (bytes_read < 0) {1393 } else if (bytes_read <= 0) { 1394 1394 char errmsg[PJ_ERR_MSG_SIZE]; 1395 1395 pj_strerror(-bytes_read, errmsg, sizeof(errmsg)); -
pjproject/trunk/pjnath/src/pjstun-srv-test/usage.c
r1374 r1485 268 268 if (status == PJ_EPENDING) 269 269 break; 270 } 271 } 272 270 else if (status != PJ_SUCCESS) 271 bytes_read = -status; 272 } 273 } 274
Note: See TracChangeset
for help on using the changeset viewer.