]> jfr.im git - irc/quakenet/newserv.git/blob - newsearch/ns-ip.c
merge
[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 #include "../nick/nick.h"
11
12 void *ip_exe(struct searchNode *thenode, int type, void *theinput);
13 void ip_free(struct searchNode *thenode);
14
15 struct searchNode *ip_parse(int type, int argc, char **argv) {
16 struct searchNode *thenode;
17
18 if (type != SEARCHTYPE_NICK) {
19 parseError = "ip: this function is only valid for nick searches.";
20 return NULL;
21 }
22
23 thenode=(struct searchNode *)malloc(sizeof (struct searchNode));
24
25 thenode->returntype = RETURNTYPE_STRING;
26 thenode->localdata = NULL;
27 thenode->exe = ip_exe;
28 thenode->free = ip_free;
29
30 return thenode;
31 }
32
33 void *ip_exe(struct searchNode *thenode, int type, void *theinput) {
34 nick *np = (nick *)theinput;
35
36 if (type != RETURNTYPE_STRING) {
37 return (void *)1;
38 }
39
40 return IPtostr(np->p_ipaddr);
41 }
42
43 void ip_free(struct searchNode *thenode) {
44 free(thenode);
45 }
46