View | Details | Raw Unified | Return to bug 271526
Collapse All | Expand All

(-)b/sys/netinet/tcp.h (+4 lines)
Lines 460-465 struct tcp_function_set { Link Here
460
#define	TLS_SET_RECORD_TYPE	1
460
#define	TLS_SET_RECORD_TYPE	1
461
#define	TLS_GET_RECORD		2
461
#define	TLS_GET_RECORD		2
462
462
463
#ifdef _KERNEL
463
/*
464
/*
464
 * TCP log user opaque
465
 * TCP log user opaque
465
 */
466
 */
Lines 479-484 struct tcp_log_user { Link Here
479
	uint32_t subtype;
480
	uint32_t subtype;
480
	union tcp_log_userdata data;
481
	union tcp_log_userdata data;
481
};
482
};
483
#endif /* _KERNEL */
482
484
483
/* user types, i.e. apps */
485
/* user types, i.e. apps */
484
#define TCP_LOG_USER_HTTPD	1
486
#define TCP_LOG_USER_HTTPD	1
Lines 500-511 struct tcp_log_user { Link Here
500
#define TCP_HYBRID_PACING_S_MSS		0x0020		/* Clent wants us to set the mss overriding gp est in CU */
502
#define TCP_HYBRID_PACING_S_MSS		0x0020		/* Clent wants us to set the mss overriding gp est in CU */
501
#define TCP_HYBRID_PACING_SETMSS	0x1000		/* Internal flag that tellsus we set the mss on this entry */
503
#define TCP_HYBRID_PACING_SETMSS	0x1000		/* Internal flag that tellsus we set the mss on this entry */
502
504
505
#ifdef _KERNEL
503
struct tcp_hybrid_req {
506
struct tcp_hybrid_req {
504
	struct http_req req;
507
	struct http_req req;
505
	uint64_t cspr;
508
	uint64_t cspr;
506
	uint32_t hint_maxseg;
509
	uint32_t hint_maxseg;
507
	uint32_t hybrid_flags;
510
	uint32_t hybrid_flags;
508
};
511
};
512
#endif /* _KERNEL */
509
513
510
/*
514
/*
511
 * TCP specific variables of interest for tp->t_stats stats(9) accounting.
515
 * TCP specific variables of interest for tp->t_stats stats(9) accounting.

Return to bug 271526