OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ts_recent
(Results
1 - 9
of
9
) sorted by null
/external/qemu/slirp/
tcp_input.c
490
/* (!ts_present || TSTMP_GEQ(ts_val, tp->
ts_recent
)) && */
501
* tp->
ts_recent
= ts_val;
823
* and it's less than
ts_recent
, drop it.
825
/* if (ts_present && (tiflags & TH_RST) == 0 && tp->
ts_recent
&&
826
* TSTMP_LT(ts_val, tp->
ts_recent
)) {
828
*/ /* Check to see if
ts_recent
is over 24 days old. */
831
* * Invalidate
ts_recent
. If this segment updates
832
* *
ts_recent
, the age will be reset later and
ts_recent
834
* *
ts_recent
to zero will at least satisfy th
[
all
...]
tcp_var.h
125
u_int32_t
ts_recent
; /* timestamp echo data */
member in struct:tcpcb
slirp.c
908
qemu_put_be32(f, tp->
ts_recent
);
1001
tp->
ts_recent
= qemu_get_be32(f);
tcp_output.c
315
* *lp = htonl(tp->
ts_recent
);
/external/qemu/slirp-android/
tcp_input.c
495
/* (!ts_present || TSTMP_GEQ(ts_val, tp->
ts_recent
)) && */
506
* tp->
ts_recent
= ts_val;
829
* and it's less than
ts_recent
, drop it.
831
/* if (ts_present && (tiflags & TH_RST) == 0 && tp->
ts_recent
&&
832
* TSTMP_LT(ts_val, tp->
ts_recent
)) {
834
*/ /* Check to see if
ts_recent
is over 24 days old. */
837
* * Invalidate
ts_recent
. If this segment updates
838
* *
ts_recent
, the age will be reset later and
ts_recent
840
* *
ts_recent
to zero will at least satisfy th
[
all
...]
tcp_var.h
130
u_int32_t
ts_recent
; /* timestamp echo data */
member in struct:tcpcb
slirp.c
[
all
...]
tcp_output.c
315
* *lp = htonl(tp->
ts_recent
);
/external/kernel-headers/original/linux/
tcp.h
176
long ts_recent_stamp;/* Time we stored
ts_recent
(for aging) */
177
__u32
ts_recent
; /* Time stamp to echo next */
member in struct:tcp_options_received
Completed in 218 milliseconds