Must enable UDP when receiving ping packets too.
[umurmur.git] / src / conf.h
index c0a0825c47702c0e4bd68c5f3c08cd610f6346a2..7967716fa04a65a22f43d5493a3a171a77487464 100644 (file)
@@ -42,18 +42,19 @@ typedef enum param {
        WELCOMETEXT,
        MAX_BANDWIDTH,
        MAX_CLIENTS,
-       DEAFULT_CHANNEL,
+       DEFAULT_CHANNEL,
 } param_t;
 
 typedef struct {
-       char parent[MAX_TEXT];
-       char name[MAX_TEXT];
-       char description[MAX_TEXT];
+       const char *parent;
+       const char *name;
+       const char *description;
+       bool_t noenter;
 } conf_channel_t;
 
 typedef struct {
-       char source[MAX_TEXT];
-       char destination[MAX_TEXT];
+       const char *source;
+       const char *destination;
 } conf_channel_link_t;
 
 int Conf_init(const char *conffile);