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).
This commit is contained in:
Michael Brown
2006-08-01 14:22:04 +00:00
parent 3a0e293123
commit 1ebb68e49a
4 changed files with 6 additions and 6 deletions

View File

@@ -546,7 +546,7 @@ void ipv4_rx ( struct pk_buff *pkb, struct net_device *netdev __unused,
pkb_pull ( pkb, sizeof ( *iphdr ) );
/* Send it to the transport layer */
trans_rx ( pkb, iphdr->protocol, src, dest );
tcpip_rx ( pkb, iphdr->protocol, src, dest );
}
/**