* Renamed CtdlLocalHost() to CtdlHostAlias() and worked it a little deeper into
[citadel.git] / citadel / internet_addressing.h
index 86aa0d019bd8cb81d333f7e8ca7d5684f61aa3dd..7f08de119753d190546e99c4d0cf0e794fe639d1 100644 (file)
@@ -13,6 +13,16 @@ enum {
 
 
 struct CtdlMessage *convert_internet_message(char *rfc822);
-int CtdlLocalHost(char *fqdn);
+
+int CtdlHostAlias(char *fqdn);
+
+/* 
+ * Values that can be returned by CtdlHostAlias()
+ */
+enum {
+       hostalias_nomatch,
+       hostalias_localhost,
+       hostalias_gatewaydomain
+};
 
 extern char *inetcfg;