Subversion Repositories Kolibri OS

Rev

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

Filtering Options

Rev Age Author Path Log message Diff Changes
1318 5250 d 6 h hidnplayr /kernel/branches/net/ More TCP code updates for net branch, code is still very unstable  
/kernel/branches/net/applications/telnet/telnet.asm
/kernel/branches/net/core/dll.inc
/kernel/branches/net/fdo.inc
/kernel/branches/net/network/socket.inc
/kernel/branches/net/network/stack.inc
/kernel/branches/net/network/tcp.inc
1313 5253 d 1 h serge / kms: rc8  
/drivers/video/drm/drm_edid.c
/drivers/video/drm/drm_fb_helper.c
/drivers/video/drm/includes/syscall.h
/drivers/video/drm/radeon/atom.c
/drivers/video/drm/radeon/atombios.h
/drivers/video/drm/radeon/display.h
/drivers/video/drm/radeon/makefile
/drivers/video/drm/radeon/r600.c
/drivers/video/drm/radeon/radeon_agp.c
/drivers/video/drm/radeon/radeon_connectors.c
/drivers/video/drm/radeon/radeon_device.c
/drivers/video/drm/radeon/radeon_fb.c
/drivers/video/drm/radeon/radeon_object.c
/drivers/video/drm/radeon/rdisplay.c
/drivers/video/drm/radeon/rdisplay_kms.c
/drivers/video/drm/radeon/rv515.c
/drivers/video/drm/radeon/rv770.c
/kernel/branches/kolibri_pe/core/heap.c
/kernel/trunk/const.inc
/kernel/trunk/video/cursors.inc
1299 5263 d 9 h clevermouse /kernel/branches/net/network/ allow query of TCP socket state through getsockopt()  
/kernel/branches/net/network/socket.inc
1282 5271 d 3 h hidnplayr /kernel/branches/net/applications/telnet/ Changes in Net Branch: Proof of concept 'Telnet Client'  
/kernel/branches/net/applications/telnet
/kernel/branches/net/applications/telnet/dll.inc
/kernel/branches/net/applications/telnet/telnet.asm
1281 5271 d 3 h hidnplayr /kernel/branches/net/network/ changes in Net Branch: further development of TCP code  
/kernel/branches/net/network/socket.inc
/kernel/branches/net/network/tcp.inc
1274 5277 d 23 h hidnplayr /kernel/branches/net/network/ Updates in TCP code of net branch
Actively initiating a connection works, other things not tested yet.
 
/kernel/branches/net/network/ethernet.inc
/kernel/branches/net/network/queue.inc
/kernel/branches/net/network/socket.inc
/kernel/branches/net/network/tcp.inc
1263 5283 d 9 h clevermouse /kernel/branches/net/ * fixed return value for udp send()
* added required zero-initialization of some fields in pcnet driver
* fixed debug output in pcnet driver
 
/kernel/branches/net/drivers/pcnet32.asm
/kernel/branches/net/network/socket.inc
1259 5284 d 3 h hidnplayr /kernel/branches/net/network/ Now you can compile the net kernel with or without procedure to QUEUE ethernet packets first, or send them immediately.  
/kernel/branches/net/network/ethernet.inc
/kernel/branches/net/network/stack.inc
1258 5284 d 4 h hidnplayr /kernel/branches/net/network/ update in ARP_IP_to_MAC function, if it needs to send an ARP request packet, the routine will change task until the reply is received, or the request has timed-out.  
/kernel/branches/net/network/ARP.inc
1257 5284 d 7 h hidnplayr /kernel/branches/net/network/ Some code cleanup (cosmethical changes) in net_branch  
/kernel/branches/net/network/ARP.inc
/kernel/branches/net/network/IPv4.inc
/kernel/branches/net/network/ethernet.inc
/kernel/branches/net/network/icmp.inc
/kernel/branches/net/network/queue.inc
/kernel/branches/net/network/socket.inc
/kernel/branches/net/network/stack.inc
/kernel/branches/net/network/tcp.inc
/kernel/branches/net/network/udp.inc
1256 5284 d 9 h clevermouse /kernel/branches/net/network/ Some changes in TCP for net branch:
* listening sockets have now a queue of incoming connections
* a mechanism which allows an application to know when sent packet is ACKed
* some fixes
 
/kernel/branches/net/network/socket.inc
/kernel/branches/net/network/stack.inc
/kernel/branches/net/network/tcp.inc
1255 5284 d 23 h hidnplayr /kernel/branches/net/network/ changes in net branch:
Some more changes in TCP code.
I should perhaps read the full RFC before doing any further changes..
 
/kernel/branches/net/network/socket.inc
/kernel/branches/net/network/tcp.inc
1254 5285 d 3 h hidnplayr /kernel/branches/net/ changes in net branch:
-Further development of TCP
-Fixed a design issue in Ethernet drivers wich would cause a lot of overhead for TCP (I probably completely broke RTL8029 driver now, let's finish TCP first..)
 
/kernel/branches/net/drivers/RTL8029.asm
/kernel/branches/net/drivers/RTL8139.asm
/kernel/branches/net/drivers/pcnet32.asm
/kernel/branches/net/drivers/sis900.asm
/kernel/branches/net/network/IPv4.inc
/kernel/branches/net/network/ethernet.inc
/kernel/branches/net/network/queue.inc
/kernel/branches/net/network/socket.inc
/kernel/branches/net/network/stack.inc
/kernel/branches/net/network/tcp.inc
/kernel/branches/net/network/udp.inc
1253 5286 d 0 h hidnplayr /kernel/branches/net/applications/netcfg/ Netcfg now accept parameters, so it can automatically load network drivers on boot.
F to load first card only
A to load all cards
 
/kernel/branches/net/applications/netcfg/netcfg.asm
1251 5286 d 5 h clevermouse /kernel/branches/net/ Some fixes in net branch:
* pseudoheader for UDP checksum was wrong
* network checksum for data with odd length was wrong
* stack issues in ARP_add_entry fixed
* more correct checking for new packets in pcnet driver
 
/kernel/branches/net/drivers/pcnet32.asm
/kernel/branches/net/network/ARP.inc
/kernel/branches/net/network/IPv4.inc
/kernel/branches/net/network/stack.inc
/kernel/branches/net/network/udp.inc
1250 5286 d 6 h hidnplayr /kernel/branches/net/ Forgot to upload a file, wich caused net kernel not to compile.
PS: There seems to be a bug in UDP checksum wich causes it to currently only work on DHCP
 
/kernel/branches/net/applications/network.inc
/kernel/branches/net/core/exports.inc
1249 5287 d 0 h hidnplayr /kernel/branches/net/ Changes in net branch:

Things changed: sockets data organisation, queue macro's are more universal, new checksum routines, changed socket structures, ...
What's new: UDP checksum generation & validation
Rough TCP code has been written, but not debugged yet.
 
/kernel/branches/net/kernel.asm
/kernel/branches/net/network/ARP.inc
/kernel/branches/net/network/IPv4.inc
/kernel/branches/net/network/ethernet.inc
/kernel/branches/net/network/icmp.inc
/kernel/branches/net/network/queue.inc
/kernel/branches/net/network/socket.inc
/kernel/branches/net/network/stack.inc
/kernel/branches/net/network/tcp.inc
/kernel/branches/net/network/udp.inc
1241 5296 d 8 h clevermouse /kernel/branches/net/network/ small fix in statistics  
/kernel/branches/net/network/ethernet.inc
1237 5298 d 9 h clevermouse /kernel/branches/net/drivers/ driver for SIS900 card, ported from trunk  
/kernel/branches/net/drivers/sis900.asm
1226 5302 d 1 h hidnplayr /kernel/branches/net/applications/netcfg/ updated network driver list of netcfg in net branch, with entries to possible future drivers.  
/kernel/branches/net/applications/netcfg/drivers.inc

Show All