]> jfr.im git - irc/quakenet/newserv.git/blame - newsearch/ns-authid.c
newsearch changes to support addition of trust_search/patriciasearch
[irc/quakenet/newserv.git] / newsearch / ns-authid.c
CommitLineData
8cce37d6
CP
1/*
2 * AUTHID functionality
3 */
4
5#include "newsearch.h"
6
7#include <stdio.h>
8#include <stdlib.h>
9
c8be5183
CP
10void *authid_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
11void authid_free(searchCtx *ctx, struct searchNode *thenode);
8cce37d6 12
f33f3f52 13struct searchNode *authid_parse(searchCtx *ctx, int argc, char **argv) {
8cce37d6
CP
14 struct searchNode *thenode;
15
8cce37d6
CP
16 if (!(thenode=(struct searchNode *)malloc(sizeof (struct searchNode)))) {
17 parseError = "malloc: could not allocate memory for this search.";
18 return NULL;
19 }
20
21 thenode->returntype = RETURNTYPE_INT;
22 thenode->localdata = NULL;
23 thenode->exe = authid_exe;
24 thenode->free = authid_free;
25
26 return thenode;
27}
28
c8be5183 29void *authid_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
8cce37d6
CP
30 nick *np = (nick *)theinput;
31
32 if (IsAccount(np) && np->auth)
33 return (void *)(np->auth->userid);
34 else
35 return (void *)0; /* will cast to a FALSE */
36
37}
38
c8be5183 39void authid_free(searchCtx *ctx, struct searchNode *thenode) {
8cce37d6
CP
40 free(thenode);
41}