delta param

Dependents:   EthernetInterface

Fork of lwip by mbed official

Files at this revision

API Documentation at this revision

Comitter:
klauss
Date:
Thu Oct 02 12:37:52 2014 +0000
Parent:
21:568185eacced
Commit message:
basic changes

Changed in this revision

api/sockets.c Show annotated file Show diff for this revision Revisions of this file
include/lwip/opt.h Show annotated file Show diff for this revision Revisions of this file
--- a/api/sockets.c	Tue Sep 16 20:59:56 2014 +0000
+++ b/api/sockets.c	Thu Oct 02 12:37:52 2014 +0000
@@ -308,9 +308,7 @@
  * Exceptions are documented!
  */
 
-int
-lwip_accept(int s, struct sockaddr *addr, socklen_t *addrlen)
-{
+int lwip_accept(int s, struct sockaddr *addr, socklen_t *addrlen){
   struct lwip_sock *sock, *nsock;
   struct netconn *newconn;
   ip_addr_t naddr;
--- a/include/lwip/opt.h	Tue Sep 16 20:59:56 2014 +0000
+++ b/include/lwip/opt.h	Thu Oct 02 12:37:52 2014 +0000
@@ -881,7 +881,7 @@
  * LWIP_TCP==1: Turn on TCP.
  */
 #ifndef LWIP_TCP
-#define LWIP_TCP                        0
+#define LWIP_TCP                        1//jhc0
 #endif
 
 /**