Changeset 5353f50 in mainline for uspace/lib/c/generic/inet.c
- Timestamp:
- 2019-08-07T11:05:55Z (6 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.c
r7cce333 r5353f50 83 83 84 84 rc = loc_service_get_id(SERVICE_NAME_INET, &inet_svc, 85 IPC_ FLAG_BLOCKING);85 IPC_AUTOSTART); 86 86 if (rc != EOK) 87 87 return ENOENT; 88 88 89 89 inet_sess = loc_service_connect(inet_svc, INTERFACE_INET, 90 IPC_ FLAG_BLOCKING);90 IPC_AUTOSTART); 91 91 if (inet_sess == NULL) 92 92 return ENOENT;
Note:
See TracChangeset
for help on using the changeset viewer.