]> jfr.im git - irc/quakenet/newserv.git/blame - newsearch/ns-ident.c
newsearch changes to support addition of trust_search/patriciasearch
[irc/quakenet/newserv.git] / newsearch / ns-ident.c
CommitLineData
c86edd1d
Q
1/*
2 * IDENT functionality
3 */
4
5#include "newsearch.h"
6
7#include <stdio.h>
8#include <stdlib.h>
9
c8be5183
CP
10void *ident_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
11void ident_free(searchCtx *ctx, struct searchNode *thenode);
c86edd1d 12
f33f3f52 13struct searchNode *ident_parse(searchCtx *ctx, int argc, char **argv) {
c86edd1d
Q
14 struct searchNode *thenode;
15
9ce4f0be
IB
16 if (!(thenode=(struct searchNode *)malloc(sizeof (struct searchNode)))) {
17 parseError = "malloc: could not allocate memory for this search.";
18 return NULL;
19 }
c86edd1d
Q
20
21 thenode->returntype = RETURNTYPE_STRING;
22 thenode->localdata = NULL;
23 thenode->exe = ident_exe;
24 thenode->free = ident_free;
25
26 return thenode;
27}
28
c8be5183 29void *ident_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
c86edd1d
Q
30 nick *np = (nick *)theinput;
31
c86edd1d
Q
32 return np->ident;
33}
34
c8be5183 35void ident_free(searchCtx *ctx, struct searchNode *thenode) {
c86edd1d
Q
36 free(thenode);
37}
38