Changes in uspace/lib/c/generic/inet/udp.c [58e8646:f9b2cb4c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/inet/udp.c
r58e8646 rf9b2cb4c 227 227 } 228 228 229 /** Set UDP association sending messages with no local address230 *231 * @param assoc Association232 * @param flags Flags233 */234 int udp_assoc_set_nolocal(udp_assoc_t *assoc)235 {236 async_exch_t *exch;237 238 exch = async_exchange_begin(assoc->udp->sess);239 sysarg_t rc = async_req_1_0(exch, UDP_ASSOC_SET_NOLOCAL, assoc->id);240 async_exchange_end(exch);241 242 return rc;243 }244 245 229 /** Send message via UDP association. 246 230 *
Note:
See TracChangeset
for help on using the changeset viewer.