Subversion Repositories Kolibri OS

Rev

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

Rev 2362 Rev 2612
Line 12... Line 12...
12
;;          GNU GENERAL PUBLIC LICENSE                             ;;
12
;;          GNU GENERAL PUBLIC LICENSE                             ;;
13
;;             Version 2, June 1991                                ;;
13
;;             Version 2, June 1991                                ;;
14
;;                                                                 ;;
14
;;                                                                 ;;
15
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
15
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 16... Line 16...
16
 
16
 
Line 17... Line 17...
17
$Revision: 2362 $
17
$Revision: 2612 $
18
 
18
 
19
; Socket states
19
; Socket states
20
TCPS_CLOSED		equ 0
20
TCPS_CLOSED             equ 0
Line 64... Line 64...
64
TCP_time_pers_max	equ 94		; max persist (60,16s)
64
TCP_time_pers_max       equ 94          ; max persist (60,16s)
65
TCP_time_keep_init	equ 118 	; connectione stablishment (75,52s)
65
TCP_time_keep_init      equ 118         ; connectione stablishment (75,52s)
66
TCP_time_keep_idle	equ 4608	; idle time before 1st probe (2h)
66
TCP_time_keep_idle      equ 4608        ; idle time before 1st probe (2h)
67
TCP_time_keep_interval	equ 118 	; between probes when no response (75,52s)
67
TCP_time_keep_interval  equ 118         ; between probes when no response (75,52s)
68
TCP_time_rtt_default	equ 5		; default Round Trip Time (3,2s)
68
TCP_time_rtt_default    equ 5           ; default Round Trip Time (3,2s)
-
 
69
TCP_time_srtt_default   equ 0           ;
Line 69... Line 70...
69
 
70
 
70
; timer constants
71
; timer constants
71
TCP_max_rxtshift	equ 12		; max retransmissions waiting for ACK
72
TCP_max_rxtshift        equ 12          ; max retransmissions waiting for ACK
Line 75... Line 76...
75
TCP_max_winshift	equ 14
76
TCP_max_winshift        equ 14
76
TCP_max_win		equ 65535
77
TCP_max_win             equ 65535
Line 77... Line 78...
77
 
78
 
Line -... Line 79...
-
 
79
TCP_re_xmit_thresh      equ 3
-
 
80
 
78
TCP_re_xmit_thresh	equ 3
81
TCP_mss_default         equ 1480        ; default max segment size
Line 79... Line 82...
79
 
82
 
80
struct	TCP_header
83
struct  TCP_header
81
 
84