From 6217967a353bc9d97ae45c2af495b653a47e2481 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Sun, 29 Mar 2009 11:37:29 -0400 Subject: Redo channels, making them single-client --- include/types.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'include/types.h') diff --git a/include/types.h b/include/types.h index d1ed2fd2..ddbff76b 100644 --- a/include/types.h +++ b/include/types.h @@ -17,7 +17,11 @@ typedef struct uw_context *uw_context; typedef uw_Basis_string uw_Basis_xhtml; typedef uw_Basis_string uw_Basis_page; -typedef size_t uw_Basis_channel; + +typedef unsigned uw_Basis_client; +typedef struct { + unsigned cli, chn; +} uw_Basis_channel; typedef enum { SUCCESS, FATAL, BOUNDED_RETRY, UNLIMITED_RETRY } failure_kind; -- cgit v1.2.3