--- l2_ch_buffer.c 2001/09/04 15:41:17 1.12
+++ l2_ch_buffer.c 2001/09/04 19:18:49 1.13
@@ -40,7 +40,7 @@
} l2_ch_buffer_t;
/* create channel */
-static int hook_create(l2_context_t *ctx, l2_channel_t *ch)
+static l2_result_t hook_create(l2_context_t *ctx, l2_channel_t *ch)
{
l2_ch_buffer_t *cfg;
@@ -60,7 +60,7 @@
}
/* configure channel */
-static int hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list ap)
+static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list ap)
{
l2_ch_buffer_t *cfg;
l2_param_t pa[2];
@@ -80,7 +80,7 @@
}
/* open channel */
-static int hook_open(l2_context_t *ctx, l2_channel_t *ch)
+static l2_result_t hook_open(l2_context_t *ctx, l2_channel_t *ch)
{
l2_ch_buffer_t *cfg;
l2_channel_t *downstream;
@@ -105,7 +105,7 @@
}
/* write to channel */
-static int hook_write(l2_context_t *ctx, l2_channel_t *ch,
+static l2_result_t hook_write(l2_context_t *ctx, l2_channel_t *ch,
const char *buf, size_t bufsize)
{
l2_ch_buffer_t *cfg;
@@ -124,7 +124,7 @@
}
/* flush channel */
-static int hook_flush(l2_context_t *ctx, l2_channel_t *ch)
+static l2_result_t hook_flush(l2_context_t *ctx, l2_channel_t *ch)
{
l2_ch_buffer_t *cfg;
l2_channel_t *downstream;
@@ -150,7 +150,7 @@
}
/* close channel */
-static int hook_close(l2_context_t *ctx, l2_channel_t *ch)
+static l2_result_t hook_close(l2_context_t *ctx, l2_channel_t *ch)
{
l2_ch_buffer_t *cfg;
l2_channel_t *downstream;
@@ -182,7 +182,7 @@
}
/* destroy channel */
-static int hook_destroy(l2_context_t *ctx, l2_channel_t *ch)
+static l2_result_t hook_destroy(l2_context_t *ctx, l2_channel_t *ch)
{
l2_ch_buffer_t *cfg;
|