Changeset 5a6cc679 in mainline for uspace/srv/net/tcp/test
- Timestamp:
- 2018-01-31T02:21:24Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a0a9cc2
- Parents:
- 132ab5d1
- Location:
- uspace/srv/net/tcp/test
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tcp/test/conn.c
r132ab5d1 r5a6cc679 46 46 PCUT_TEST_BEFORE 47 47 { 48 int rc;48 errno_t rc; 49 49 50 50 /* We will be calling functions that perform logging */ … … 89 89 tcp_conn_t *conn, *cfound; 90 90 inet_ep2_t epp; 91 int rc;91 errno_t rc; 92 92 93 93 inet_ep2_init(&epp); … … 119 119 tcp_conn_t *conn; 120 120 inet_ep2_t epp; 121 int rc;121 errno_t rc; 122 122 123 123 inet_ep2_init(&epp); … … 152 152 tcp_conn_t *cconn, *sconn; 153 153 inet_ep2_t cepp, sepp; 154 int rc;154 errno_t rc; 155 155 156 156 /* Client EPP */ -
uspace/srv/net/tcp/test/iqueue.c
r132ab5d1 r5a6cc679 45 45 inet_ep2_t epp; 46 46 tcp_segment_t *rseg; 47 int rc;47 errno_t rc; 48 48 49 49 inet_ep2_init(&epp); … … 71 71 void *data; 72 72 size_t dsize; 73 int rc;73 errno_t rc; 74 74 75 75 inet_ep2_init(&epp); … … 117 117 void *data; 118 118 size_t dsize; 119 int rc;119 errno_t rc; 120 120 121 121 inet_ep2_init(&epp); -
uspace/srv/net/tcp/test/pdu.c
r132ab5d1 r5a6cc679 47 47 tcp_pdu_t *pdu; 48 48 inet_ep2_t epp, depp; 49 int rc;49 errno_t rc; 50 50 51 51 inet_ep2_init(&epp); … … 78 78 uint8_t *data; 79 79 size_t i, dsize; 80 int rc;80 errno_t rc; 81 81 82 82 inet_ep2_init(&epp); -
uspace/srv/net/tcp/test/rqueue.c
r132ab5d1 r5a6cc679 59 59 PCUT_TEST_BEFORE 60 60 { 61 int rc;61 errno_t rc; 62 62 63 63 /* We will be calling functions that perform logging */ -
uspace/srv/net/tcp/test/tqueue.c
r132ab5d1 r5a6cc679 53 53 PCUT_TEST_BEFORE 54 54 { 55 int rc;55 errno_t rc; 56 56 57 57 /* We will be calling functions that perform logging */ -
uspace/srv/net/tcp/test/ucall.c
r132ab5d1 r5a6cc679 60 60 PCUT_TEST_BEFORE 61 61 { 62 int rc;62 errno_t rc; 63 63 64 64 /* We will be calling functions that perform logging */
Note:
See TracChangeset
for help on using the changeset viewer.
