]> jfr.im git - solanum.git/commitdiff
authd: minor cleanups
authorElizabeth Myers <redacted>
Sat, 2 Apr 2016 09:51:11 +0000 (04:51 -0500)
committerElizabeth Myers <redacted>
Sat, 2 Apr 2016 09:51:11 +0000 (04:51 -0500)
include/authd.h
ircd/authd.c

index 994ef8c84d8e9e1e55d887d9dc26d9c9d9f342f6..50e1f3f5aacb5c06bb8b5b34fc44eac43fa4cf4d 100644 (file)
@@ -50,7 +50,6 @@ void authd_initiate_client(struct Client *);
 void authd_accept_client(struct Client *client_p, const char *ident, const char *host);
 void authd_reject_client(struct Client *client_p, const char *ident, const char *host, char cause, const char *data, const char *reason);
 void authd_abort_client(struct Client *);
-const char *get_provider_string(char cause);
 
 void add_blacklist(const char *host, const char *reason, uint8_t iptype, rb_dlink_list *filters);
 void del_blacklist(const char *host);
index 9e43e49dfef1763a1f40c122d0cc9011fc8ad32f..ab07214da6532a0d3dbcaeb5ba844fc4ee2d3b3b 100644 (file)
@@ -182,7 +182,7 @@ static void
 cmd_accept_client(int parc, char **parv)
 {
        struct Client *client_p;
-       
+
        /* cid to uid (retrieve and delete) */
        if((client_p = str_cid_to_client(parv[1], true)) == NULL)
                return;
@@ -273,15 +273,14 @@ parse_authd_reply(rb_helper * helper)
 {
        ssize_t len;
        int parc;
-       char authdBuf[READBUF_SIZE];
+       char buf[READBUF_SIZE];
        char *parv[MAXPARA + 1];
 
-       while((len = rb_helper_read(helper, authdBuf, sizeof(authdBuf))) > 0)
+       while((len = rb_helper_read(helper, buf, sizeof(buf))) > 0)
        {
                struct authd_cb *cmd;
 
-               parc = rb_string_to_array(authdBuf, parv, MAXPARA+1);
-
+               parc = rb_string_to_array(buf, parv, MAXPARA+1);
                cmd = &authd_cmd_tab[*parv[0]];
                if(cmd->fn != NULL)
                {
@@ -495,23 +494,6 @@ timeout_dead_authd_clients(void *notused __unused)
        }
 }
 
-/* Turn a cause char (who rejected us) into the name of the provider */
-const char *
-get_provider_string(char cause)
-{
-       switch(cause)
-       {
-       case 'B':
-               return "Blacklist";
-       case 'D':
-               return "rDNS";
-       case 'I':
-               return "Ident";
-       default:
-               return "Unknown";
-       }
-}
-
 /* Send a new blacklist to authd */
 void
 add_blacklist(const char *host, const char *reason, uint8_t iptype, rb_dlink_list *filters)