Changeset 4537 for pjproject/trunk/pjlib/src/pjlib-test/ioq_udp.c
- Timestamp:
- Jun 19, 2013 6:47:43 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pjlib-test/ioq_udp.c
r4238 r4537 116 116 }; 117 117 118 #if def PJ_WIN32118 #if defined(PJ_WIN32) || defined(PJ_WIN64) 119 119 # define S_ADDR S_un.S_addr 120 120 #else … … 138 138 pj_ioqueue_op_key_t read_op, write_op; 139 139 int bufsize = BUF_MIN_SIZE; 140 pj_ssize_t bytes, status = -1; 140 pj_ssize_t bytes; 141 int status = -1; 141 142 pj_str_t temp; 142 143 pj_bool_t send_pending, recv_pending; … … 769 770 if (rc == PJ_SUCCESS) { 770 771 if (bytes < 0) { 771 app_perror("...error: pj_ioqueue_sendto()", 772 app_perror("...error: pj_ioqueue_sendto()",(pj_status_t)-bytes); 772 773 break; 773 774 }
Note: See TracChangeset
for help on using the changeset viewer.