193 Commits (de29a0818e2c2cdada9dbde415543c4bbf5ef4ea)
 

Author SHA1 Message Date
davidhaas de29a0818e By request: moved lightweight protection to macros. 23 years ago
davidhaas 4fc309b1dd Made sys_arch_prot() interface more generic by returning sys_prot_t instead 23 years ago
davidhaas 353478180d Fix some compile issues with both coldfire and unix builds. 23 years ago
jani ea66eb6c23 one more C++ comment changed two prototypes added for the SNMP = 1 case 23 years ago
davidhaas 7b3e158c92 sys_thread_new() now returns the thread (request from Marc Boucher). 23 years ago
jani 848dea2058 Only access non-NULL pbufs on some paths where they can be NULL in newly introduced callback code 23 years ago
jani f2d35751ca fix doxygen comment for netif_add 23 years ago
jani 16833de1cf remove list.h 23 years ago
likewise 0cb0cd6611 C instead of C++ style comments. 23 years ago
davidhaas dc49999124 Fixed some build issues regarding snmp.h 23 years ago
likewise daebdd1d77 Removed my #error. 23 years ago
likewise c68ee2b2ed SNMP functions are now unconditionally called and defined empty if LWIP_SNMP == 0 23 years ago
likewise 32fbec2e48 Include arch/cc.h first, as architecture headers might #define NULL itself. 23 years ago
jani c13e08a7f5 make debugs and asserts platform independent.No more use of abort and printf.delete 2 references to arch/cpu.h and arch/lib.h 23 years ago
jani 451926e5c3 don't include arch/lib.h 23 years ago
jani 1868b2d244 tcp_timer_needed should be a noop when using the raw API.Fix link error bug #2489 23 years ago
davidhaas dd2fa15e8a Add the following features and bugfixes: 23 years ago
jani d2e008d4b4 Update src/FILES and src/netif/FILES 23 years ago
davidhaas 98fbb855fb Added lightweight protection. In coldfire this is implemented by disabling 23 years ago
likewise 987e9df948 Fixed comment typo. 23 years ago
likewise 70d54479a1 Changed some comments into JavaDoc format. 23 years ago
jani c91b024153 Deleted proj/ subdir.It has moved to contrib. 23 years ago
davidhaas f5f31f5eaa ---------------------------------------------------------------------- 23 years ago
jani 442f46a1ce recvfrom accesses freed netbuf.If it's reused in the small window by another thread recvfrom returns bad from info.Patch #1041 by Florian Zschocke 23 years ago
likewise ea6432702f Added comments. Code cleanup. Clearer debugging in udp_input(). 24 years ago
likewise faa9191191 Added commented about the signedness of pbuf_header() argument. 24 years ago
likewise 8560f6ef2b Fixed DHCP packet input filter. Added numerous comments. Code cleanup. 24 years ago
kieranm b0c1e37364 Updated Makefiles to reflect new "contrib" directory for architecture specific code 24 years ago
likewise bb0194cc0c Some macro's were not surrounded by brackets. Was dangerous when nesting macro's. 24 years ago
proff_fs 304dc9fd07 Moved msvc6 project files to contrib module. 24 years ago
likewise bcfdf4c1cf Removed the src/arch tree from the lwip module. (Now in seperate contrib module). 24 years ago
likewise 663b79ca72 ip_input() changed. A configured netif accepts any traffic and an unconfigured netif accepts only DHCP traffic. 24 years ago
likewise 4a720425b7 Rebinding an active pcb did not check the given address/port against other bound pcb's. 24 years ago
likewise 0e4d59541a Fixed assignment of pcb->flags if pcb was NULL in udp_new(). 24 years ago
likewise ba666295eb Nullified stray pointer for debugging purposes. 24 years ago
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