Subversion Repositories Kolibri OS

Rev

Rev 3643 | Rev 3711 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3643 Rev 3698
Line 53... Line 53...
53
                                rb 2    ; to match ethernet header size         ;;; FIXME
53
                                rb 2    ; to match ethernet header size         ;;; FIXME
54
                                        ; Ip header begins here (we will need the IP header to re-construct the complete packet)
54
                                        ; Ip header begins here (we will need the IP header to re-construct the complete packet)
55
ends
55
ends
Line 56... Line -...
56
 
-
 
57
 
56
 
-
 
57
 
Line 58... Line 58...
58
align 4
58
uglobal
59
uglobal
59
align 4
60
 
60
 
61
        IP_LIST                 rd NET_DEVICES_MAX
61
        IP_LIST                 rd NET_DEVICES_MAX
Line 67... Line 67...
67
        IP_packets_tx           rd NET_DEVICES_MAX
67
        IP_packets_tx           rd NET_DEVICES_MAX
68
        IP_packets_rx           rd NET_DEVICES_MAX
68
        IP_packets_rx           rd NET_DEVICES_MAX
69
        IP_packets_dumped       rd NET_DEVICES_MAX
69
        IP_packets_dumped       rd NET_DEVICES_MAX
Line 70... Line 70...
70
 
70
 
-
 
71
        FRAGMENT_LIST           rb MAX_FRAGMENTS * sizeof.FRAGMENT_slot
71
        FRAGMENT_LIST           rb MAX_FRAGMENTS * sizeof.FRAGMENT_slot
72
 
Line 72... Line 73...
72
endg
73
endg
73
 
74