summaryrefslogtreecommitdiff
path: root/src/ivybuffer.h
diff options
context:
space:
mode:
authorbustico2008-03-21 09:03:34 +0000
committerbustico2008-03-21 09:03:34 +0000
commit6ca781b8a38474ab428d5fcb3b489dfe3e974334 (patch)
tree8c8725c88c3fd031d632a9f2b1f7376d1cb3c75b /src/ivybuffer.h
parent50236114f04a0050625bedee7c4c02b36b1213ae (diff)
downloadivy-c-6ca781b8a38474ab428d5fcb3b489dfe3e974334.zip
ivy-c-6ca781b8a38474ab428d5fcb3b489dfe3e974334.tar.gz
ivy-c-6ca781b8a38474ab428d5fcb3b489dfe3e974334.tar.bz2
ivy-c-6ca781b8a38474ab428d5fcb3b489dfe3e974334.tar.xz
- numerous fixes
- socket in non blocking mode (resolve some deadlock, and agent are immune to another agent beeing blocked)
Diffstat (limited to 'src/ivybuffer.h')
-rw-r--r--src/ivybuffer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ivybuffer.h b/src/ivybuffer.h
index 86c5474..2d58909 100644
--- a/src/ivybuffer.h
+++ b/src/ivybuffer.h
@@ -27,10 +27,13 @@ typedef struct {
int size;
int offset;
} IvyBuffer;
+
+
/* utility fonction do make vsprintf without buffer limit */
extern int make_message(IvyBuffer * buffer, const char *fmt, va_list ap);
extern int make_message_var(IvyBuffer* buffer, const char *fmt, ...);
+
#ifdef __cplusplus
}
#endif