ossp-pkg/l2/l2_ch_syslog.c 1.3 -> 1.4
--- l2_ch_syslog.c 2001/05/17 14:42:00 1.3
+++ l2_ch_syslog.c 2001/05/26 08:02:55 1.4
@@ -42,24 +42,24 @@
return L2_OK;
}
-static int hook_open(l2_context_t *ctx, l2_channel_t *below)
+static int hook_open(l2_context_t *ctx, l2_channel_t *downstream)
{
return L2_OK;
}
-static int hook_write(l2_context_t *ctx, l2_channel_t *below,
+static int hook_write(l2_context_t *ctx, l2_channel_t *downstream,
const char *buf, size_t buf_size)
{
syslog(LOG_INFO, buf);
return L2_OK;
}
-static int hook_flush(l2_context_t *ctx, l2_channel_t *below)
+static int hook_flush(l2_context_t *ctx, l2_channel_t *downstream)
{
return L2_OK;
}
-static int hook_close(l2_context_t *ctx, l2_channel_t *below)
+static int hook_close(l2_context_t *ctx, l2_channel_t *downstream)
{
return L2_OK;
}
|
|