summaryrefslogtreecommitdiff
path: root/nuttx/net/uip/uip-listen.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-11-19 23:09:39 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-11-19 23:09:39 +0000
commit0cc9b5ef69aa200c2610f3e87281fe9aa9d7d389 (patch)
tree3b0f4ca1b8066bdd68f41c4640f074c9b5535ffa /nuttx/net/uip/uip-listen.c
parentbefc37ada0b901ad7c315e4089976508396d496b (diff)
downloadpx4-nuttx-0cc9b5ef69aa200c2610f3e87281fe9aa9d7d389.tar.gz
px4-nuttx-0cc9b5ef69aa200c2610f3e87281fe9aa9d7d389.tar.bz2
px4-nuttx-0cc9b5ef69aa200c2610f3e87281fe9aa9d7d389.zip
Add TCP readahead logic
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@387 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/net/uip/uip-listen.c')
-rw-r--r--nuttx/net/uip/uip-listen.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/net/uip/uip-listen.c b/nuttx/net/uip/uip-listen.c
index e7ee8ffc3..643d054cb 100644
--- a/nuttx/net/uip/uip-listen.c
+++ b/nuttx/net/uip/uip-listen.c
@@ -57,7 +57,7 @@
/* The uip_listenports list all currently listening ports. */
-static uint16 uip_listenports[UIP_LISTENPORTS];
+static uint16 uip_listenports[CONFIG_NET_MAX_LISTENPORTS];
/****************************************************************************
* Private Functions
@@ -82,7 +82,7 @@ static uint16 uip_listenports[UIP_LISTENPORTS];
void uip_listeninit(void)
{
int ndx;
- for (ndx = 0; ndx < UIP_LISTENPORTS; ndx++)
+ for (ndx = 0; ndx < CONFIG_NET_MAX_LISTENPORTS; ndx++)
{
uip_listenports[ndx] = 0;
}
@@ -106,7 +106,7 @@ int uip_unlisten(uint16 port)
int ret = -EINVAL;
flags = irqsave();
- for (ndx = 0; ndx < UIP_LISTENPORTS; ndx++)
+ for (ndx = 0; ndx < CONFIG_NET_MAX_LISTENPORTS; ndx++)
{
if (uip_listenports[ndx] == port)
{
@@ -137,7 +137,7 @@ int uip_listen(uint16 port)
int ret = -ENOBUFS;
flags = irqsave();
- for (ndx = 0; ndx < UIP_LISTENPORTS; ndx++)
+ for (ndx = 0; ndx < CONFIG_NET_MAX_LISTENPORTS; ndx++)
{
if (uip_listenports[ndx] == 0)
{
@@ -164,7 +164,7 @@ int uip_listen(uint16 port)
boolean uip_islistener(uint16 portno)
{
int ndx;
- for (ndx = 0; ndx < UIP_LISTENPORTS; ndx++)
+ for (ndx = 0; ndx < CONFIG_NET_MAX_LISTENPORTS; ndx++)
{
if (uip_listenports[ndx] == portno)
{