summaryrefslogtreecommitdiff
path: root/nuttx/net/uip/Make.defs
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-06-23 19:25:16 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-06-23 19:25:16 -0600
commit9de1aa22302e1eae4e094794266ab83b5afb79f1 (patch)
tree86bca29bde64222bb7a6626757ca30066bf1447b /nuttx/net/uip/Make.defs
parent753895c39d42d92cfdbedaf1a06c0daf7afee67e (diff)
downloadnuttx-9de1aa22302e1eae4e094794266ab83b5afb79f1.tar.gz
nuttx-9de1aa22302e1eae4e094794266ab83b5afb79f1.tar.bz2
nuttx-9de1aa22302e1eae4e094794266ab83b5afb79f1.zip
CONFIG_NET_PKT is compatible with current TCP writebuffering logic because the share too much code; move sending of packet socket data from net_send_unbufferer.c to a new uip/uip_pktsend.c file for consistency
Diffstat (limited to 'nuttx/net/uip/Make.defs')
-rw-r--r--nuttx/net/uip/Make.defs6
1 files changed, 6 insertions, 0 deletions
diff --git a/nuttx/net/uip/Make.defs b/nuttx/net/uip/Make.defs
index 6b780152d..0137ae32b 100644
--- a/nuttx/net/uip/Make.defs
+++ b/nuttx/net/uip/Make.defs
@@ -46,6 +46,12 @@ ifeq ($(CONFIG_NET_IOB),y)
NET_CSRCS += uip_iobsend.c
endif
+# Raw packet socket support
+
+ifeq ($(CONFIG_NET_PKT),y)
+NET_CSRCS += uip_pktsend.c
+endif
+
# Non-interrupt level support required?
ifeq ($(CONFIG_NET_NOINTS),y)