]> jfr.im git - irc/quakenet/newserv.git/blame - newsearch/ns-channels.c
review - ops first
[irc/quakenet/newserv.git] / newsearch / ns-channels.c
CommitLineData
afa6ced3 1/*
2 * CHANNELS functionality
3 */
4
5#include "newsearch.h"
6
7#include <stdio.h>
8#include <stdlib.h>
9
10#include "../irc/irc_config.h"
11#include "../lib/irc_string.h"
12
c8be5183
CP
13void *channels_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
14void channels_free(searchCtx *ctx, struct searchNode *thenode);
afa6ced3 15
c8be5183 16struct searchNode *channels_parse(searchCtx *ctx, int type, int argc, char **argv) {
afa6ced3 17 struct searchNode *thenode;
18
19 if (type != SEARCHTYPE_NICK) {
20 parseError = "channels: this function is only valid for nick searches.";
21 return NULL;
22 }
23
24 if (!(thenode=(struct searchNode *)malloc(sizeof (struct searchNode)))) {
25 parseError = "malloc: could not allocate memory for this search.";
26 return NULL;
27 }
28
29 thenode->returntype = RETURNTYPE_INT;
30 thenode->localdata = NULL;
31 thenode->exe = channels_exe;
32 thenode->free = channels_free;
33
34 return thenode;
35}
36
c8be5183 37void *channels_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
afa6ced3 38 nick *np = (nick *)theinput;
39
c54295ef 40 return (void *)(long)np->channels->cursi;
afa6ced3 41}
42
c8be5183 43void channels_free(searchCtx *ctx, struct searchNode *thenode) {
afa6ced3 44 free(thenode);
45}