Lines Matching defs:syncache
53 struct syncache { struct
55 struct in_conninfo sc_inc; /* addresses */
56 int sc_rxttime; /* retransmit time */
57 u_int16_t sc_rxmits; /* retransmit counter */
58 u_int16_t sc_port; /* remote UDP encaps port */
59 u_int32_t sc_tsreflect; /* timestamp to reflect */
60 u_int32_t sc_tsoff; /* ts offset w/ syncookies */
61 u_int32_t sc_flowlabel; /* IPv6 flowlabel */
62 tcp_seq sc_irs; /* seq from peer */
63 tcp_seq sc_iss; /* our ISS */
64 struct mbuf *sc_ipopts; /* source route */
65 u_int16_t sc_peer_mss; /* peer's MSS */
66 u_int16_t sc_wnd; /* advertised window */
67 u_int8_t sc_ip_ttl; /* TTL / Hop Limit */
68 u_int8_t sc_ip_tos; /* TOS / Traffic Class */
69 u_int8_t sc_requested_s_scale:4,
70 sc_requested_r_scale:4;
71 u_int16_t sc_flags;
73 struct toedev *sc_tod; /* entry added by this TOE */
74 void *sc_todctx; /* TOE driver context */
76 struct label *sc_label; /* MAC label reference */
100 struct syncache_head { argument
102 TAILQ_HEAD(sch_head, syncache) sch_bucket; argument