]> jfr.im git - irc/quakenet/newserv.git/blob - newsearch/ns-ip.c
SearchCtx should contain 'type' - this is to make life easier when defining new searc...
[irc/quakenet/newserv.git] / newsearch / ns-ip.c
1 /*
2 * ip functionality
3 */
4
5 #include "newsearch.h"
6
7 #include <stdio.h>
8 #include <stdlib.h>
9
10 void *ip_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
11 void ip_free(searchCtx *ctx, struct searchNode *thenode);
12
13 struct searchNode *ip_parse(searchCtx *ctx, int argc, char **argv) {
14 struct searchNode *thenode;
15
16 if (ctx->type != SEARCHTYPE_NICK) {
17 parseError = "ip: this function is only valid for nick searches.";
18 return NULL;
19 }
20
21 if (!(thenode=(struct searchNode *)malloc(sizeof (struct searchNode)))) {
22 parseError = "malloc: could not allocate memory for this search.";
23 return NULL;
24 }
25
26 thenode->returntype = RETURNTYPE_STRING;
27 thenode->localdata = NULL;
28 thenode->exe = ip_exe;
29 thenode->free = ip_free;
30
31 return thenode;
32 }
33
34 void *ip_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
35 nick *np = (nick *)theinput;
36
37 return (void *)IPtostr(np->p_ipaddr);
38 }
39
40 void ip_free(searchCtx *ctx, struct searchNode *thenode) {
41 free(thenode);
42 }
43