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