Lines Matching defs:rec_strm
127 typedef struct rec_strm { struct
128 char *tcp_handle;
132 int (*writeit)(char *, char *, int);
133 char *out_base; /* output buffer (points to frag header) */
134 char *out_finger; /* next output position */
135 char *out_boundry; /* data cannot up to this address */
136 uint32_t *frag_header; /* beginning of current fragment */
137 bool_t frag_sent; /* true if buffer sent in middle of record */
141 int (*readit)(char *, char *, int);
142 u_long in_size; /* fixed size of the input buffer */
143 char *in_base;
144 char *in_finger; /* location of next byte to be had */
145 char *in_boundry; /* can read up to this location */
146 long fbtbc; /* fragment bytes to be consumed */
147 bool_t last_frag;
148 u_int sendsize;
149 u_int recvsize;
151 bool_t nonblock;
152 bool_t in_haveheader;
153 uint32_t in_header;
154 char *in_hdrp;
155 int in_hdrlen;
156 int in_reclen;
157 int in_received;
158 int in_maxrec;