Changeset 330df83 in mainline for uspace/srv/net/tcp/conn.c
- Timestamp:
- 2013-07-19T20:42:57Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f4cbf9dd
- Parents:
- 8a8a08d1 (diff), cd18cd1 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tcp/conn.c
r8a8a08d1 r330df83 312 312 static bool tcp_socket_match(tcp_sock_t *sock, tcp_sock_t *patt) 313 313 { 314 log_msg(LOG_DEFAULT, LVL_DEBUG2, 315 "tcp_socket_match(sock=(%u), pat=(%u))", sock->port, patt->port); 316 314 317 if ((!inet_addr_is_any(&patt->addr)) && 315 318 (!inet_addr_compare(&patt->addr, &sock->addr))) … … 351 354 { 352 355 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_conn_find_ref(%p)", sp); 356 357 log_msg(LOG_DEFAULT, LVL_DEBUG2, "compare conn (f:(%u), l:(%u))", 358 sp->foreign.port, sp->local.port); 353 359 354 360 fibril_mutex_lock(&conn_list_lock); … … 357 363 tcp_conn_t *conn = list_get_instance(link, tcp_conn_t, link); 358 364 tcp_sockpair_t *csp = &conn->ident; 365 366 log_msg(LOG_DEFAULT, LVL_DEBUG2, " - with (f:(%u), l:(%u))", 367 csp->foreign.port, csp->local.port); 359 368 360 369 if (tcp_sockpair_match(sp, csp)) {
Note:
See TracChangeset
for help on using the changeset viewer.