|
@@ -70,7 +70,7 @@ struct tcpip_protocol* find_tcpip_protocol ( uint8_t trans_proto ) {
|
70
|
70
|
*
|
71
|
71
|
* This function expects a transport-layer segment from the network-layer
|
72
|
72
|
*/
|
73
|
|
-void trans_rx ( struct pk_buff *pkb, uint8_t trans_proto, struct in_addr *src,
|
|
73
|
+void tcpip_rx ( struct pk_buff *pkb, uint8_t trans_proto, struct in_addr *src,
|
74
|
74
|
struct in_addr *dest ) {
|
75
|
75
|
struct tcpip_protocol *tcpip;
|
76
|
76
|
|
|
@@ -90,7 +90,7 @@ void trans_rx ( struct pk_buff *pkb, uint8_t trans_proto, struct in_addr *src,
|
90
|
90
|
* @v sock Destination socket address
|
91
|
91
|
* @ret Status
|
92
|
92
|
*/
|
93
|
|
-int trans_tx ( struct pk_buff *pkb, struct tcpip_protocol *tcpip,
|
|
93
|
+int tcpip_tx ( struct pk_buff *pkb, struct tcpip_protocol *tcpip,
|
94
|
94
|
struct sockaddr *sock ) {
|
95
|
95
|
|
96
|
96
|
|