mirror of
https://github.com/apache/nuttx.git
synced 2026-09-21 05:14:27 +08:00
Rename many functions in net/devif from uip_* to devif_*
This commit is contained in:
@@ -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()
|
||||
*/
|
||||
|
||||
@@ -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()
|
||||
*/
|
||||
|
||||
@@ -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()
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user