diff options
author | Michael Brown <mcb30@etherboot.org> | 2006-08-01 14:22:04 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2006-08-01 14:22:04 +0000 |
commit | 1ebb68e49a4330107fa3dd16bab0f418df89f082 (patch) | |
tree | c2b70e99e2ac692d603c3cb7989ae93083bee0fd /src/net/udp.c | |
parent | 3a0e29312394a9165b5f0fb58b407a372f4a0e6b (diff) | |
download | ipxe-1ebb68e49a4330107fa3dd16bab0f418df89f082.tar.gz |
Renamed trans_{rx,tx}() to tcpip_{rx,tx}(), since they are specific to
the TCP/IP protocol suite (rather than being general transport-layer
functions).
Diffstat (limited to 'src/net/udp.c')
-rw-r--r-- | src/net/udp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/udp.c b/src/net/udp.c index 537bd13d..1f6a899d 100644 --- a/src/net/udp.c +++ b/src/net/udp.c @@ -151,7 +151,7 @@ int udp_sendto ( struct udp_connection *conn, struct sockaddr *peer, udp_dump ( udphdr ); /* Send it to the next layer for processing */ - return trans_tx ( conn->tx_pkb, &udp_protocol, peer ); + return tcpip_tx ( conn->tx_pkb, &udp_protocol, peer ); } /** |