summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_recvbuf.h
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2017-01-17 20:00:00 +0300
committerIgor Sysoev <igor@sysoev.ru>2017-01-17 20:00:00 +0300
commit16cbf3c076a0aca6d47adaf3f719493674cf2363 (patch)
treee6530480020f62a2bdbf249988ec3e2a751d3927 /src/nxt_recvbuf.h
downloadunit-16cbf3c076a0aca6d47adaf3f719493674cf2363.tar.gz
unit-16cbf3c076a0aca6d47adaf3f719493674cf2363.tar.bz2
Initial version.
Diffstat (limited to 'src/nxt_recvbuf.h')
-rw-r--r--src/nxt_recvbuf.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/nxt_recvbuf.h b/src/nxt_recvbuf.h
new file mode 100644
index 00000000..69b51498
--- /dev/null
+++ b/src/nxt_recvbuf.h
@@ -0,0 +1,24 @@
+
+/*
+ * Copyright (C) Igor Sysoev
+ * Copyright (C) NGINX, Inc.
+ */
+
+#ifndef _NXT_RECVBUF_H_INCLUDED_
+#define _NXT_RECVBUF_H_INCLUDED_
+
+
+typedef struct {
+ nxt_buf_t *buf;
+ nxt_iobuf_t *iobuf;
+
+ int32_t nmax;
+ size_t size;
+} nxt_recvbuf_coalesce_t;
+
+
+nxt_uint_t nxt_recvbuf_mem_coalesce(nxt_recvbuf_coalesce_t *rb);
+void nxt_recvbuf_update(nxt_buf_t *b, size_t sent);
+
+
+#endif /* _NXT_RECVBUF_H_INCLUDED_ */