From 85f42044df55499672d657eecec88311df9e0fc4 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 30 Jun 2014 19:17:22 -0600 Subject: [PATCH] NET: Rename uip_dataevent to tcp_data_event --- net/tcp/tcp_callback.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/net/tcp/tcp_callback.c b/net/tcp/tcp_callback.c index d77916cec2..6f7035aef2 100644 --- a/net/tcp/tcp_callback.c +++ b/net/tcp/tcp_callback.c @@ -63,7 +63,7 @@ ****************************************************************************/ /**************************************************************************** - * Function: uip_dataevent + * Function: tcp_data_event * * Description: * Handle data that is not accepted by the application because there is no @@ -77,8 +77,8 @@ ****************************************************************************/ static inline uint16_t -uip_dataevent(FAR struct net_driver_s *dev, FAR struct tcp_conn_s *conn, - uint16_t flags) +tcp_data_event(FAR struct net_driver_s *dev, FAR struct tcp_conn_s *conn, + uint16_t flags) { uint16_t ret; @@ -191,7 +191,7 @@ uint16_t tcp_callback(FAR struct net_driver_s *dev, FAR struct tcp_conn_s *conn, { /* Data was not handled.. dispose of it appropriately */ - flags = uip_dataevent(dev, conn, flags); + flags = tcp_data_event(dev, conn, flags); } /* Check if there is a connection-related event and a connection