added basic ssl support to ircu
[ircu2.10.12-pk.git] / ircd / ircd_lexer.l
index 925f1ac06fee71f4852b67bf769a6577c0c0a667..c149a63241ecca1cecfb77957db1664a25e7aed0 100644 (file)
@@ -105,6 +105,10 @@ static struct lexer_token {
   TOKEN(AUTOCONNECT),
   TOKEN(PROGRAM),
   TOKEN(DNS),
+  TOKEN(SSL),
+  TOKEN(CERTFILE),
+  TOKEN(KEYFILE),
+  TOKEN(CAFILE),
 #undef TOKEN
   { "administrator", ADMIN },
   { "apass_opmode", TPRIV_APASS_OPMODE },
@@ -220,6 +224,12 @@ void deinit_lexer(void)
   }
 }
 
+int
+yywrap(void)
+{
+  return 1;
+}
+
 %}
 
 WHITE [ \t\r]+