Changeset 5572ad1 in mainline for uspace/srv/net/tcp/conn.c
- Timestamp:
- 2012-08-23T21:50:46Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 276e44a
- Parents:
- ae827d0 (diff), db81577 (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
rae827d0 r5572ad1 999 999 } else { 1000 1000 log_msg(LVL_DEBUG, "%s: Nothing left in segment, dropping " 1001 "(xfer_size=%zu, SEG.LEN=% zu, seg->ctrl=%u)",1002 conn->name, xfer_size, seg->len, (unsigned )seg->ctrl);1001 "(xfer_size=%zu, SEG.LEN=%" PRIu32 ", seg->ctrl=%u)", 1002 conn->name, xfer_size, seg->len, (unsigned int) seg->ctrl); 1003 1003 /* Nothing left in segment */ 1004 1004 tcp_segment_delete(seg); … … 1146 1146 void tcp_conn_segment_arrived(tcp_conn_t *conn, tcp_segment_t *seg) 1147 1147 { 1148 log_msg(LVL_DEBUG, "% c: tcp_conn_segment_arrived(%p)",1148 log_msg(LVL_DEBUG, "%s: tcp_conn_segment_arrived(%p)", 1149 1149 conn->name, seg); 1150 1150
Note:
See TracChangeset
for help on using the changeset viewer.