Changeset 309469de in mainline for uspace/srv/net/udp/service.c
- Timestamp:
- 2015-05-09T19:28:32Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b99f6e2
- Parents:
- 1d4b815
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/udp/service.c
r1d4b815 r309469de 493 493 { 494 494 udp_client_t client; 495 size_t n; 495 496 496 497 /* Accept the connection */ … … 513 514 /* The other side has hung up */ 514 515 async_answer_0(callid, EOK); 515 return;516 break; 516 517 } 517 518 … … 543 544 } 544 545 } 546 547 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_client_conn: terminated"); 548 549 n = list_count(&client.cassoc); 550 if (n != 0) { 551 log_msg(LOG_DEFAULT, LVL_WARN, "udp_client_conn: " 552 "Client with %zu active associations closed session.", n); 553 /* XXX Clean up */ 554 } 555 556 /* XXX Clean up client receive queue */ 545 557 } 546 558
Note:
See TracChangeset
for help on using the changeset viewer.