]> jfr.im git - irc/quakenet/newserv.git/blame - newsearch/ns-ident.c
Whoops, bit too much copy paste there...
[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
c8be5183 13struct searchNode *ident_parse(searchCtx *ctx, int type, int argc, char **argv) {
c86edd1d
Q
14 struct searchNode *thenode;
15
16 if (type != SEARCHTYPE_NICK) {
17 parseError = "ident: this function is only valid for nick searches.";
18 return NULL;
19 }
20
9ce4f0be
IB
21 if (!(thenode=(struct searchNode *)malloc(sizeof (struct searchNode)))) {
22 parseError = "malloc: could not allocate memory for this search.";
23 return NULL;
24 }
c86edd1d
Q
25
26 thenode->returntype = RETURNTYPE_STRING;
27 thenode->localdata = NULL;
28 thenode->exe = ident_exe;
29 thenode->free = ident_free;
30
31 return thenode;
32}
33
c8be5183 34void *ident_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
c86edd1d
Q
35 nick *np = (nick *)theinput;
36
c86edd1d
Q
37 return np->ident;
38}
39
c8be5183 40void ident_free(searchCtx *ctx, struct searchNode *thenode) {
c86edd1d
Q
41 free(thenode);
42}
43