summaryrefslogtreecommitdiff
path: root/nuttx/net/uip/uip_tcpappsend.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-09-15 15:44:14 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-09-15 15:44:14 +0000
commite2af7aac95b860422eb445bc6e85e18eff118819 (patch)
tree4466048286266204110cf0a20931493391ef0f93 /nuttx/net/uip/uip_tcpappsend.c
parenta3f9769a1e25b60594eb5563779c53d602f25ddd (diff)
downloadpx4-nuttx-e2af7aac95b860422eb445bc6e85e18eff118819.tar.gz
px4-nuttx-e2af7aac95b860422eb445bc6e85e18eff118819.tar.bz2
px4-nuttx-e2af7aac95b860422eb445bc6e85e18eff118819.zip
Use lldbg() instead of dbg() in interrupt level logic
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2054 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/net/uip/uip_tcpappsend.c')
-rw-r--r--nuttx/net/uip/uip_tcpappsend.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/net/uip/uip_tcpappsend.c b/nuttx/net/uip/uip_tcpappsend.c
index 786ea7081..b5facfccf 100644
--- a/nuttx/net/uip/uip_tcpappsend.c
+++ b/nuttx/net/uip/uip_tcpappsend.c
@@ -96,7 +96,7 @@ void uip_tcpappsend(struct uip_driver_s *dev, struct uip_conn *conn, uint16 resu
{
/* Handle the result based on the application response */
- nvdbg("result: %04x\n", result);
+ nllvdbg("result: %04x\n", result);
/* Check for connection aborted */
@@ -104,7 +104,7 @@ void uip_tcpappsend(struct uip_driver_s *dev, struct uip_conn *conn, uint16 resu
{
dev->d_sndlen = 0;
conn->tcpstateflags = UIP_CLOSED;
- nvdbg("TCP state: UIP_CLOSED\n");
+ nllvdbg("TCP state: UIP_CLOSED\n");
uip_tcpsend(dev, conn, TCP_RST | TCP_ACK, UIP_IPTCPH_LEN);
}
@@ -116,7 +116,7 @@ void uip_tcpappsend(struct uip_driver_s *dev, struct uip_conn *conn, uint16 resu
conn->tcpstateflags = UIP_FIN_WAIT_1;
conn->len = 1;
conn->nrtx = 0;
- nvdbg("TCP state: UIP_FIN_WAIT_1\n");
+ nllvdbg("TCP state: UIP_FIN_WAIT_1\n");
dev->d_sndlen = 0;
uip_tcpsend(dev, conn, TCP_FIN | TCP_ACK, UIP_IPTCPH_LEN);
@@ -202,7 +202,7 @@ void uip_tcpappsend(struct uip_driver_s *dev, struct uip_conn *conn, uint16 resu
void uip_tcprexmit(struct uip_driver_s *dev, struct uip_conn *conn, uint16 result)
{
- nvdbg("result: %04x\n", result);
+ nllvdbg("result: %04x\n", result);
dev->d_appdata = dev->d_snddata;