Changeset 8b863a62 in mainline for uspace/srv/net/udp/udp_inet.c
- Timestamp:
- 2014-04-16T17:14:06Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f857e8b
- Parents:
- dba3e2c (diff), 70b570c (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
-
uspace/srv/net/udp/udp_inet.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/udp/udp_inet.c
rdba3e2c r8b863a62 67 67 pdu->data_size = dgram->size; 68 68 69 pdu->src.ipv4 = dgram->src.ipv4; 70 pdu->dest.ipv4 = dgram->dest.ipv4; 71 log_msg(LOG_DEFAULT, LVL_DEBUG, "src: 0x%08x, dest: 0x%08x", 72 pdu->src.ipv4, pdu->dest.ipv4); 69 pdu->src = dgram->src; 70 pdu->dest = dgram->dest; 73 71 74 72 udp_received_pdu(pdu); … … 86 84 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_transmit_pdu()"); 87 85 88 dgram.src.ipv4 = pdu->src.ipv4; 89 dgram.dest.ipv4 = pdu->dest.ipv4; 86 dgram.iplink = pdu->iplink; 87 dgram.src = pdu->src; 88 dgram.dest = pdu->dest; 90 89 dgram.tos = 0; 91 90 dgram.data = pdu->data;
Note:
See TracChangeset
for help on using the changeset viewer.
