Changes in uspace/lib/nettl/src/portrng.c [b10460a:8a637a4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/nettl/src/portrng.c
rb10460a r8a637a4 88 88 * @param apnum Place to store allocated port number 89 89 * 90 * @return EOK on success, ENOENT if no free port number found, EEXIST S90 * @return EOK on success, ENOENT if no free port number found, EEXIST 91 91 * if @a pnum is specified but it is already allocated, 92 92 * EINVAL if @a pnum is specified from the system range, but … … 137 137 if (port->pn == pnum) { 138 138 log_msg(LOG_DEFAULT, LVL_DEBUG2, "port already used"); 139 return EEXIST S;139 return EEXIST; 140 140 } 141 141 }
Note:
See TracChangeset
for help on using the changeset viewer.