Lines Matching defs:bsd_db
85 struct bsd_db { struct
86 int totlen; /* length of this structure */
87 u_int hsize; /* size of the hash table */
88 u_char hshift; /* used in hash function */
89 u_char n_bits; /* current bits/code */
90 u_char maxbits;
91 u_char debug;
92 u_char unit;
93 uint16_t seqno; /* sequence # of next packet */
94 u_int hdrlen; /* header length to preallocate */
95 u_int mru;
96 u_int maxmaxcode; /* largest valid code */
97 u_int max_ent; /* largest code in use */
98 u_int in_count; /* uncompressed bytes, aged */
99 u_int bytes_out; /* compressed bytes, aged */
100 u_int ratio; /* recent compression ratio */
101 u_int checkpoint; /* when to next check the ratio */
102 u_int clear_count; /* times dictionary cleared */
103 u_int incomp_count; /* incompressible packets */
104 u_int incomp_bytes; /* incompressible bytes */
105 u_int uncomp_count; /* uncompressed packets */
106 u_int uncomp_bytes; /* uncompressed bytes */
107 u_int comp_count; /* compressed packets */
108 u_int comp_bytes; /* compressed bytes */
109 uint16_t *lens; /* array of lengths of codes */
110 struct bsd_dict {
127 } dict[1];