]> jfr.im git - irc/quakenet/newserv.git/blame - newsearch/ns-host.c
3 fixes to my newsearch stuff:
[irc/quakenet/newserv.git] / newsearch / ns-host.c
CommitLineData
c86edd1d
Q
1/*
2 * HOST functionality
3 */
4
5#include "newsearch.h"
6
7#include <stdio.h>
8#include <stdlib.h>
9
10#include "../irc/irc_config.h"
c86edd1d
Q
11#include "../lib/irc_string.h"
12
c8be5183
CP
13void *host_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
14void *host_exe_real(searchCtx *ctx, struct searchNode *thenode, void *theinput);
15void host_free(searchCtx *ctx, struct searchNode *thenode);
c86edd1d 16
f33f3f52 17struct searchNode *host_parse(searchCtx *ctx, int argc, char **argv) {
c86edd1d
Q
18 struct searchNode *thenode;
19
9ce4f0be
IB
20 if (!(thenode=(struct searchNode *)malloc(sizeof (struct searchNode)))) {
21 parseError = "malloc: could not allocate memory for this search.";
22 return NULL;
23 }
c86edd1d
Q
24
25 thenode->returntype = RETURNTYPE_STRING;
9ce4f0be
IB
26 if (!(thenode->localdata = (void *)malloc(HOSTLEN+1))) {
27 /* couldn't malloc() memory for thenode->localdata, so free thenode to avoid leakage */
28 parseError = "malloc: could not allocate memory for this search.";
29 free(thenode);
30 return NULL;
31 }
c86edd1d
Q
32 thenode->exe = host_exe;
33 thenode->free = host_free;
34
35 /* Allow "host real" to match realhost */
36
37 if (argc>0 && !ircd_strcmp(argv[0],"real")) {
38 thenode->exe = host_exe_real;
39 }
40
41 return thenode;
42}
43
c8be5183 44void *host_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
c86edd1d
Q
45 nick *np = (nick *)theinput;
46 char *buf = thenode->localdata;
47
c86edd1d
Q
48 if (IsSetHost(np)) {
49 return np->sethost->content;
50 } else if (IsHideHost(np)) {
51 sprintf(buf,"%s.%s",np->authname,HIS_HIDDENHOST);
52 return buf;
53 } else {
54 return np->host->name->content;
55 }
56}
57
c8be5183 58void *host_exe_real(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
c86edd1d
Q
59 nick *np = (nick *)theinput;
60
c86edd1d
Q
61 return np->host->name->content;
62}
63
c8be5183 64void host_free(searchCtx *ctx, struct searchNode *thenode) {
c86edd1d
Q
65 free(thenode->localdata);
66 free(thenode);
67}