From b7dc018999a689010314c3847576cef772fd1d16 Mon Sep 17 00:00:00 2001 From: Thadeu Lima de Souza Cascardo Date: Thu, 2 Jul 2009 15:45:22 -0300 Subject: [PATCH] Rename iochannel to hcconn. --- Makefile.am | 2 +- iochannel.c => hcconn.c | 2 +- iochannel.h => hcconn.h | 0 nethook.h | 2 +- null.h | 2 +- popproxy.c | 2 +- ssl.h | 2 +- 7 files changed, 6 insertions(+), 6 deletions(-) rename iochannel.c => hcconn.c (99%) rename iochannel.h => hcconn.h (100%) diff --git a/Makefile.am b/Makefile.am index 8d54ad8..93680df 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ bin_PROGRAMS = popproxy ppmanager popproxy_SOURCES = popproxy.c log.c log.h nethook.c nethook.h \ - iochannel.c iochannel.h tcp_connect.h tcp_connect.c tcp_server.c \ + hcconn.c hcconn.h tcp_connect.h tcp_connect.c tcp_server.c \ null.c null.h ssl.c ssl.h \ ssl_server.c pop.c pop.h usermap.c usermap.h dist_sysconf_DATA = popproxy.conf diff --git a/iochannel.c b/hcconn.c similarity index 99% rename from iochannel.c rename to hcconn.c index e4d5514..5c6e60e 100644 --- a/iochannel.c +++ b/hcconn.c @@ -17,7 +17,7 @@ */ -#include "iochannel.h" +#include "hcconn.h" #include #include diff --git a/iochannel.h b/hcconn.h similarity index 100% rename from iochannel.h rename to hcconn.h diff --git a/nethook.h b/nethook.h index 3e1baa6..b428a14 100644 --- a/nethook.h +++ b/nethook.h @@ -21,7 +21,7 @@ #define NET_HOOK_H #include -#include "iochannel.h" +#include "hcconn.h" typedef struct _net_hook_t net_hook_t; typedef void (*net_connect) (net_hook_t*); diff --git a/null.h b/null.h index 790b2c7..e48a5eb 100644 --- a/null.h +++ b/null.h @@ -21,7 +21,7 @@ #define NULL_H #include "nethook.h" -#include "iochannel.h" +#include "hcconn.h" net_hook_t* null_hook_new (HCConn*, char*); void null_destroy (net_hook_t*); diff --git a/popproxy.c b/popproxy.c index 27f8a00..7f4f5a3 100644 --- a/popproxy.c +++ b/popproxy.c @@ -31,7 +31,7 @@ #include "ssl.h" #include "pop.h" -#include "iochannel.h" +#include "hcconn.h" #include "tcp_connect.h" #define CONFFILE SYSCONFDIR "/popproxy.conf" diff --git a/ssl.h b/ssl.h index ae541c5..62e75d5 100644 --- a/ssl.h +++ b/ssl.h @@ -22,7 +22,7 @@ #define POPPROXY_SSL_H #include "nethook.h" -#include "iochannel.h" +#include "hcconn.h" struct ssl_data { -- 2.20.1