Changeset 5353f50 in mainline for uspace/lib/c/generic/inet/tcp.c
- Timestamp:
- 2019-08-07T11:05:55Z (5 years ago)
- Children:
- 8ae8262
- Parents:
- 7cce333
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-11-11 23:25:01)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 11:05:55)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/inet/tcp.c
r7cce333 r5353f50 106 106 107 107 rc = loc_service_get_id(SERVICE_NAME_TCP, &tcp_svcid, 108 IPC_ FLAG_BLOCKING);108 IPC_AUTOSTART); 109 109 if (rc != EOK) { 110 110 rc = EIO; … … 113 113 114 114 tcp->sess = loc_service_connect(tcp_svcid, INTERFACE_TCP, 115 IPC_ FLAG_BLOCKING);115 IPC_AUTOSTART); 116 116 if (tcp->sess == NULL) { 117 117 rc = EIO;
Note:
See TracChangeset
for help on using the changeset viewer.