158 Commits (d34851db91dbebb5ca59d44ff3ab45eb4fcfd24a)
 

Author SHA1 Message Date
likewise d34851db91 Initial commit of snmp.h function prototypes. 24 years ago
likewise 7dfd162a34 Added source documenting comments. 24 years ago
jani 6d0a8a85c7 Fix locking for disconnect operation (use post and fetch on the connection's mbox in the two threads like other operations).Make netconn_peer take a pointer to addr instead of pointer to pointer to addr.Addr is a 4 byte struct an IP address so use structure assignment not just pointer assignment when saving the peer.This way the address is really saved :fixes bug #1897 24 years ago
jani 721d237120 Fixes so that UDP connect() works.Enable generation of ICMP destination unreachable when the port is unavailable 24 years ago
jani 46c575c038 Fix udp_bind to allow rebind for same socket (yesterday's commit broke that) and introduce connection info for UDP pcbs.New function netconn_disconnect, do_disconnect for deatching UDP from a remote addres.Fix #2240 24 years ago
jani 16434f0d01 Don't allow multiple binds to the same UDP port/address pair.Closes bug #1896 24 years ago
jani 39edc69514 When all entries are 0 due to the whole table changing since the last arp tick (past 10 seconds) there's no oldest entry and the new entry does not get a spot.Fix this (from Ed Sutter) 24 years ago
likewise 2154ac3ecb Enhanced documentation on UDP PCB matchjng code. 24 years ago
jani 42309b5d6f put a state field in listen PCBs to since they are often treated as normal pcbs. patch #922, bug #2114 24 years ago
jani 07af438a38 fix printing of recved packet.Discovered by Ed Sutter 24 years ago
likewise fa8f6cb204 Free incoming pbuf's in the TCP event macro if the recv callback is NULL. Fixes bug #2156. 24 years ago
jani 049853362a ack duplicate segments too to prevent connection hanging when a single transmitted ACK gets lost 24 years ago
jani 3e6202f614 do not set rtime too many times to 0.it's enough to do it in tcp_output_segment 24 years ago
jani a993e962f5 fix compiler warnings in DEBUGF 24 years ago
likewise 1ad5537c9b Fixed some typo's in the comments. 24 years ago
likewise ea0dc429a7 Added #include <string.h> for memset()/memcpy(). 24 years ago
jani 8d7f09fa92 remove global ctime.Each entry's ctime is now absolute.This avoids wrapping and also solves naming clash reported on the list 24 years ago
jani 02a6a8a809 etharp_output_sent no longer exists 24 years ago
jani 2bba9bcd9f make rtime field u16_t like rto otherwise it won't catch rto if that goes beyond 255.When that happens there's trouble already since 255 ticks is over 2 minutes but still... 24 years ago
jani 4eebbdea0d print correct pcb->rtime value in debug statament.it does not directly depend on tcp_ticks 24 years ago
jani 4a2d03a517 seqno is u32_t so use %lu instead of %ld when printing it 24 years ago
jani 5212afdd8f remove already commented out function : memp_realloc 24 years ago
jani e196108931 fix debug messages in tcp_slowtmr to reflect the correct name of this function 24 years ago
likewise a5e9b73703 Made hardware address length definable (was 6 bytes for Ethernet). 24 years ago
likewise 5e13d495f0 Merged patch #927 which fixes "needs modifiable lvalue" compile error in TCP_REG. 24 years ago
likewise a528a2323e More debugging in checksum routines. 24 years ago
likewise c786f238ef Output snd_buf size in debug message in tcp_enqueue(). 24 years ago
adamdunkels d04f7aa4bc Added comments to the tcp_enqueue() function. 24 years ago
likewise ced453a72b Moved ETHARP_ALWAYS_INSERT switch to lwipopts.h 24 years ago
likewise 0f3e8c19e8 Added check if ARP_QUEUEING is 1 for a queueing related debug statement. 24 years ago
likewise cc4df7100d Updated lwIP module copyright years to include 2003. Committers must check theirs. 24 years ago
likewise 0bd02a5f7a Removed etharp_output_sent() as etharp.c no longer returns ARP packets to the driver. 24 years ago
likewise b311ab0d53 Allocate PBUF_RAW instead of PBUF_LINK type pbufs. Fixes bug #1890 for this driver. 24 years ago
jani b6b905412e Patch #928 from Marc 24 years ago
jani 2c2fec1b0e remove bcopy & bzero from archs 24 years ago
jani f946abd86b Simplify pbuf allocation for TCP packets in two places by replacing pbuf_alloc + pbuf_header 24 years ago
jani 156d2c866f sizeof(u8_t) is 1 at temperatures > 0 K 24 years ago
jani ef68392388 renamed (hopefully everywhere) stats to lwip_stats.closes bug #1901 24 years ago
jani 51006824f9 remove tcpdump.c 24 years ago
kieranm 9eebc135ce Removed dummy variable from "struct mem" and handled all MEM_ALIGNMENT cases 24 years ago
kieranm af0d6bc881 Removed tcpdump.c from Makefile - it seems to have disappeared 24 years ago
kieranm 771fb0f2cd Removed "static" from declaration of netif in ip_forward and ip_output 24 years ago
jani 3984e521ad Move tcpdump.h to unix arch.BTW: as with tcpdump.c no CVS history is lost here. 24 years ago
jani 95c1bca3f1 Moved tcpdump to unix arch since it's specific to that. 24 years ago
jani 4c1069c38b use memset and memcpy instead of bzero and bcopy throughout lwIP core code.Archs need to update.Bug #1899 24 years ago
jani 219266b7de replace bcopy and bzero with memcpy memset in tapif.Alloc PBUF_RAW instead of PBUF_LINK on input now that the meaning of PBUF_LINK has changed. 24 years ago
jani f037bfad1e check for NO_SYS consistently using #if.Closes bug #1910 24 years ago
jani c0a8ef6f6f Use C style comments.In debug stataments cast various struct pointers to void* to 24 years ago
jani a071cbf86c Allocate PBUF_POOL_BUFSIZE at once not harcoded 128.Init MTU for slip - 1500 for 24 years ago
jani 6dd350348d fix 'conflicting type for strncmp' warning on linux by including string.h 24 years ago