diff options
Diffstat (limited to 'gisi/client.h')
-rw-r--r-- | gisi/client.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gisi/client.h b/gisi/client.h index 683d284a..4d7b19a5 100644 --- a/gisi/client.h +++ b/gisi/client.h @@ -73,6 +73,10 @@ int g_isi_client_error(const GIsiClient *client); GIsiRequest *g_isi_request_make(GIsiClient *client, const void *data, size_t len, unsigned timeout, GIsiResponseFunc func, void *opaque); +struct iovec; +GIsiRequest *g_isi_request_vmake(GIsiClient *client, const struct iovec *iov, + size_t iovlen, unsigned timeout, + GIsiResponseFunc func, void *opaque); void g_isi_request_cancel(GIsiRequest *req); |