Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Show changed files | Directory listing | RSS feed

Filtering Options

Rev Age Author Path Log message Diff
3253 4114 d 8 h hidnplayr /kernel/branches/net/network/ Fixed some bugs with non-blocking local sockets.  
3252 4114 d 9 h hidnplayr /kernel/branches/net/network/ Better TCP timestamp, fixed stack corruption if PAWS fails.  
3251 4114 d 11 h hidnplayr /kernel/branches/net/network/ Changed some debug output messages (and their levels) in new stack.
Implemented a queue for incoming TCP segments.
 
3249 4114 d 12 h hidnplayr /kernel/branches/net/network/ Removed non-working debug level specific for network stack.  
3229 4126 d 11 h hidnplayr /kernel/branches/net/network/ Forgot to set the PID in previous revision.  
3228 4126 d 12 h hidnplayr /kernel/branches/net/network/ New function Socket_pair for UNIX (IPC) sockets.  
3203 4134 d 16 h hidnplayr /kernel/branches/net/network/ ARP will now wait for reply/timeout if it needed to send an ARP request packet.  
3200 4135 d 9 h hidnplayr /kernel/branches/net/ Updated API so applications can easily send ARP announcements, keep track of ARP conflicts.
Zeroconfig now supports padding option and sends ARP announcements if needed. Also some refactoring/cleanup.
 
3185 4144 d 14 h hidnplayr /kernel/branches/net/network/ Added some experimental IPv6 code to net branch.  
3162 4151 d 15 h hidnplayr /kernel/branches/net/network/ Fixed previous mistake.  
3161 4151 d 15 h hidnplayr /kernel/branches/net/network/ Actually release the TCP socket once it's closed.  
3160 4151 d 16 h hidnplayr /kernel/branches/net/network/ Refactored recent ARP code a bit.  
3159 4151 d 18 h hidnplayr /kernel/branches/net/network/ Kernel now automatically sends one gratuitous ARP once IP address has been set.
Also, fixed ARP stats.
 
3148 4162 d 15 h hidnplayr /kernel/branches/net/network/ Further fixing of ARP_add_entry. Now entries can be re-added if they were removed once before.  
3147 4162 d 16 h hidnplayr /kernel/branches/net/network/ Fixed and simplified ARP_add_entry. (Previous versions worked only for one entry)  
3146 4163 d 8 h hidnplayr /kernel/branches/net/ Added simple socket debugging tool.
Moved some TCP code to tcp_usreq.inc.
 
3144 4164 d 7 h hidnplayr /kernel/branches/net/ Added TCP_mss (max segment size) stub.
Bugfix in FTPD concerning data ports.
 
3143 4165 d 9 h hidnplayr /kernel/branches/net/network/ Fixed TCP keepalive  
2998 4220 d 12 h hidnplayr /kernel/branches/net/network/ Fixed blocking in SOCKET_receive_tcp  
2996 4222 d 10 h hidnplayr /kernel/branches/net/network/ Experimental blocking sockets  
2995 4222 d 16 h hidnplayr /kernel/branches/net/ Port numbers for TCP and UDP must be given in Big endian order now.  
2994 4224 d 9 h hidnplayr /kernel/branches/net/network/ Getting ready for blocking sockets  
2993 4224 d 11 h hidnplayr /kernel/branches/net/network/ Bugfix in SOCKET_ring_read  
2980 4247 d 16 h hidnplayr /kernel/branches/net/network/ UDP output now only updates stats if send didnt fail.  
2964 4283 d 8 h hidnplayr /kernel/branches/net/network/ Send all PPPoE control packets to PPPoE app.  
2962 4284 d 18 h hidnplayr /kernel/branches/net/ Moved Link Control Protocol handler from kernel to application.  
2961 4285 d 8 h hidnplayr /kernel/branches/net/network/ Basic LCP implementation, starting with echo request->reply  
2960 4285 d 9 h hidnplayr /kernel/branches/net/ Fixed some bugs in PPPoE implementation. Discovery works, now we need PPP-LCP.  
2957 4285 d 22 h hidnplayr /kernel/branches/net/network/ TCP_input: window is now stored as dword, data is now also received when header prediction failed.  
2955 4287 d 8 h hidnplayr /kernel/branches/net/network/ implemented TCP_rangeset and TCP_set_persist  
2954 4287 d 9 h hidnplayr /kernel/branches/net/network/ rewrote TCP option parser, added SACK, moved connection accepter to run before option parser.  
2953 4287 d 9 h hidnplayr /kernel/branches/net/network/ Enabled Requesting scale and timestamp by default.  
2952 4287 d 9 h hidnplayr /kernel/branches/net/network/ Fixed scaling option in TCP_output  
2951 4287 d 10 h hidnplayr /kernel/branches/net/network/ Fixed timestamp option in TCP_output  
2950 4287 d 10 h hidnplayr /kernel/branches/net/network/ Fixed bugs in PPPoE discovery  
2948 4287 d 19 h hidnplayr /kernel/branches/net/network/ Fixed bug in RTT measurement  
2947 4287 d 19 h hidnplayr /kernel/branches/net/network/ Added missing file  
2946 4287 d 19 h hidnplayr /kernel/branches/net/network/ Added Protection Against Wrapped Sequence numbers (PAWS)  
2942 4288 d 6 h hidnplayr /kernel/branches/net/network/ Bugfixes for #2937 (receive window calculation).
Disabled interrupts while in TCP_input or TCP_output to prevent deadlock.
 
2940 4288 d 10 h hidnplayr /kernel/branches/net/network/ Fixed some cases of terrible deadlock in TCP.