Lines Matching defs:bsd_db
116 struct bsd_db { struct
117 int totlen; /* length of this structure */
118 unsigned int hsize; /* size of the hash table */
119 unsigned char hshift; /* used in hash function */
120 unsigned char n_bits; /* current bits/code */
121 unsigned char maxbits; /* maximum bits/code */
122 unsigned char debug; /* non-zero if debug desired */
123 unsigned char unit; /* ppp unit number */
124 u16 seqno; /* sequence # of next packet */
125 unsigned int mru; /* size of receive (decompress) bufr */
126 unsigned int maxmaxcode; /* largest valid code */
127 unsigned int max_ent; /* largest code in use */
128 unsigned int in_count; /* uncompressed bytes, aged */
129 unsigned int bytes_out; /* compressed bytes, aged */
130 unsigned int ratio; /* recent compression ratio */
131 unsigned int checkpoint; /* when to next check the ratio */
132 unsigned int clear_count; /* times dictionary cleared */
133 unsigned int incomp_count; /* incompressible packets */
134 unsigned int incomp_bytes; /* incompressible bytes */
135 unsigned int uncomp_count; /* uncompressed packets */
136 unsigned int uncomp_bytes; /* uncompressed bytes */
137 unsigned int comp_count; /* compressed packets */
138 unsigned int comp_bytes; /* compressed bytes */
139 unsigned short *lens; /* array of lengths of codes */
140 struct bsd_dict *dict; /* dictionary */
141 int xmit;