]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/conf.h
TLS/SSL support: code changes.
[ngircd-alex.git] / src / ngircd / conf.h
index 6ec5bce909010e47075b672542bb398bf071ddd8..0e5b2abd96565dbd4434620e8ced5338d284c594 100644 (file)
@@ -24,6 +24,9 @@
 #include "portab.h"
 #include "tool.h"
 #include "ng_ipaddr.h"
+#include "resolve.h"
+#include "conf-ssl.h"
+
 
 typedef struct _Conf_Oper
 {
@@ -46,8 +49,23 @@ typedef struct _Conf_Server
        CONN_ID conn_id;                /* ID of server connection or NONE */
        ng_ipaddr_t bind_addr;          /* source address to use for outgoing connections */
        ng_ipaddr_t dst_addr[2];        /* list of addresses to connect to */
+#ifdef SSL_SUPPORT
+       bool SSLConnect;                /* connect() using SSL? */
+#endif
 } CONF_SERVER;
 
+
+#ifdef SSL_SUPPORT
+struct SSLOptions {
+       char *KeyFile;
+       char *CertFile;
+       char *DHFile;
+       array ListenPorts;
+       array KeyFilePassword;
+};
+#endif
+
+
 typedef struct _Conf_Channel
 {
        char name[CHANNEL_NAME_LEN];    /* Name of the channel */