]> jfr.im git - solanum.git/commitdiff
authd: plug in new C type.
authorElizabeth Myers <redacted>
Thu, 10 Mar 2016 14:09:16 +0000 (08:09 -0600)
committerElizabeth Myers <redacted>
Thu, 10 Mar 2016 14:09:16 +0000 (08:09 -0600)
authd/authd.c

index 6233683305980648177826abdecac28dca6036c5..50333004094d4c4eebdd96a89d81628b440318a1 100644 (file)
@@ -20,6 +20,7 @@
 
 #include "authd.h"
 #include "dns.h"
+#include "provider.h"
 
 #define MAXPARA 10
 
@@ -28,8 +29,9 @@ static void handle_stat(int parc, char *parv[]);
 
 rb_helper *authd_helper = NULL;
 authd_cmd_handler authd_cmd_handlers[256] = {
-       ['H'] = handle_reload,
+       ['C'] = handle_new_connection,
        ['D'] = resolve_dns,
+       ['H'] = handle_reload,
        ['S'] = handle_stat,
 };