Rename many functions in net/devif from uip_* to devif_*

This commit is contained in:
Gregory Nutt
2014-06-28 18:36:09 -06:00
parent 5790c94ba3
commit 8e706eb4ff
29 changed files with 94 additions and 92 deletions
-5
View File
@@ -88,11 +88,6 @@ struct pkt_conn_s
FAR struct pkt_conn_s *pkt_alloc(void);
/* Allocate a new packet socket data callback */
#define pkt_callbackalloc(conn) uip_callbackalloc(&conn->list)
#define pkt_callbackfree(conn,cb) uip_callbackfree(cb, &conn->list)
/* Free a connection structure that is no longer in use. This should
* be done by the implementation of close()
*/
-5
View File
@@ -397,11 +397,6 @@ struct tcp_iphdr_s
struct tcp_conn_s *tcp_alloc(void);
/* Allocate a new TCP data callback */
#define tcp_callbackalloc(conn) uip_callbackalloc(&conn->list)
#define tcp_callbackfree(conn,cb) uip_callbackfree(cb, &conn->list)
/* Free a connection structure that is no longer in use. This should
* be done by the implementation of close()
*/
-5
View File
@@ -161,11 +161,6 @@ struct udp_stats_s
FAR struct udp_conn_s *udp_alloc(void);
/* Allocate a new TCP data callback */
#define udp_callbackalloc(conn) uip_callbackalloc(&conn->list)
#define udp_callbackfree(conn,cb) uip_callbackfree(cb, &conn->list)
/* Free a connection structure that is no longer in use. This should
* be done by the implementation of close()
*/