| 1 |
pippijn |
1.1 |
/* |
| 2 |
|
|
* Copyright © 2005 Atheme Development Group |
| 3 |
|
|
* Rights to this code are as documented in doc/LICENSE. |
| 4 |
|
|
* |
| 5 |
|
|
* Datastream query stuff. |
| 6 |
|
|
* |
| 7 |
|
|
* $Id: datastream.h 7779 2007-03-03 13:55:42Z pippijn $ |
| 8 |
|
|
*/ |
| 9 |
|
|
#ifndef __CLARODATASTREAM |
| 10 |
|
|
#define __CLARODATASTREAM |
| 11 |
|
|
|
| 12 |
|
|
E void sendq_add (connection_t *cptr, char *buf, int len); |
| 13 |
|
|
E void sendq_add_eof (connection_t *cptr); |
| 14 |
|
|
E void sendq_flush (connection_t *cptr); |
| 15 |
|
|
E bool sendq_nonempty (connection_t *cptr); |
| 16 |
|
|
|
| 17 |
|
|
E int recvq_length (connection_t *cptr); |
| 18 |
|
|
E void recvq_put (connection_t *cptr); |
| 19 |
|
|
E int recvq_get (connection_t *cptr, char *buf, int len); |
| 20 |
|
|
E int recvq_getline (connection_t *cptr, char *buf, int len); |
| 21 |
|
|
|
| 22 |
|
|
E void sendqrecvq_free (connection_t *cptr); |
| 23 |
|
|
|
| 24 |
|
|
#endif |