summaryrefslogtreecommitdiffstats
path: root/src/net/udp.c
diff options
context:
space:
mode:
authorMichael Brown2006-08-01 16:22:04 +0200
committerMichael Brown2006-08-01 16:22:04 +0200
commit1ebb68e49a4330107fa3dd16bab0f418df89f082 (patch)
treec2b70e99e2ac692d603c3cb7989ae93083bee0fd /src/net/udp.c
parentRenamed tcpip_if.[ch] to tcpip.[ch] (diff)
downloadipxe-1ebb68e49a4330107fa3dd16bab0f418df89f082.tar.gz
ipxe-1ebb68e49a4330107fa3dd16bab0f418df89f082.tar.xz
ipxe-1ebb68e49a4330107fa3dd16bab0f418df89f082.zip
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.c2
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 );
}
/**