summaryrefslogtreecommitdiffstats
path: root/src/include
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/include
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/include')
-rw-r--r--src/include/gpxe/tcpip.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/gpxe/tcpip.h b/src/include/gpxe/tcpip.h
index df6354175..215bcd245 100644
--- a/src/include/gpxe/tcpip.h
+++ b/src/include/gpxe/tcpip.h
@@ -77,10 +77,10 @@ struct tcpip_net_protocol {
#define TCPIP_NET_PROTOCOL( protocol ) \
struct tcpip_net_protocol protocol __table ( tcpip_net_protocols, 01 )
-extern void trans_rx ( struct pk_buff *pkb, uint8_t trans_proto,
+extern void tcpip_rx ( struct pk_buff *pkb, uint8_t trans_proto,
struct in_addr *src, struct in_addr *dest );
-extern int trans_tx ( struct pk_buff *pkb, struct tcpip_protocol *tcpip,
+extern int tcpip_tx ( struct pk_buff *pkb, struct tcpip_protocol *tcpip,
struct sockaddr *dest );
extern unsigned int tcpip_continue_chksum ( unsigned int partial,