Lines Matching defs:rec_strm
109 typedef struct rec_strm { struct
110 char *tcp_handle;
114 int (*writeit)(void *, void *, int);
115 char *out_base; /* output buffer (points to frag header) */
116 char *out_finger; /* next output position */
117 char *out_boundry; /* data cannot up to this address */
118 uint32_t *frag_header; /* beginning of current fragment */
119 bool_t frag_sent; /* true if buffer sent in middle of record */
123 int (*readit)(void *, void *, int);
124 u_long in_size; /* fixed size of the input buffer */
125 char *in_base;
126 char *in_finger; /* location of next byte to be had */
127 char *in_boundry; /* can read up to this location */
128 long fbtbc; /* fragment bytes to be consumed */
129 bool_t last_frag;
130 u_int sendsize;
131 u_int recvsize;
133 bool_t nonblock;
134 bool_t in_haveheader;
135 uint32_t in_header;
136 char *in_hdrp;
137 int in_hdrlen;
138 int in_reclen;
139 int in_received;
140 int in_maxrec;