blob: 751729431ba2db8e022150591bc3ba628314dc32 [file] [log] [blame]
adamdunkelsa2f3c422004-09-12 20:24:53 +00001/*
2 * Copyright (c) 2004, Adam Dunkels.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the Institute nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * This file is part of the Contiki operating system.
30 *
31 * Author: Adam Dunkels <adam@sics.se>
32 *
adamdunkelsd0791bb2005-02-22 22:23:07 +000033 * $Id: ircc.h,v 1.5 2005/02/22 22:23:08 adamdunkels Exp $
adamdunkelsa2f3c422004-09-12 20:24:53 +000034 */
adamdunkels5a2df1c2004-09-01 19:11:42 +000035#ifndef __IRCC_H__
36#define __IRCC_H__
37
adamdunkelsd0791bb2005-02-22 22:23:07 +000038#include "psock.h"
adamdunkels5a2df1c2004-09-01 19:11:42 +000039
40struct ircc_state {
41
42 struct pt pt;
adamdunkelsd0791bb2005-02-22 22:23:07 +000043 struct psock s;
adamdunkels5a2df1c2004-09-01 19:11:42 +000044
45 struct uip_conn *conn;
46
47 unsigned char command;
48
49 char *msg;
50 char channel[32];
adamdunkels8fcaca52004-09-05 07:12:39 +000051 char outputbuf[200];
52 char inputbuf[400];
adamdunkels5a2df1c2004-09-01 19:11:42 +000053 char *nick;
54 char *server;
55};
56
57void ircc_init(void);
58
59void ircc_appcall(void *s);
60
61struct ircc_state *ircc_connect(struct ircc_state *s,
62 char *server, u16_t *ipaddr, char *nick);
63
64void ircc_join(struct ircc_state *s, char *channel);
65void ircc_part(struct ircc_state *s);
66void ircc_list(struct ircc_state *s);
67void ircc_msg(struct ircc_state *s, char *msg);
adamdunkels8d8b7452004-09-09 21:05:56 +000068void ircc_actionmsg(struct ircc_state *s, char *msg);
adamdunkels5a2df1c2004-09-01 19:11:42 +000069
70void ircc_sent(struct ircc_state *s);
71
72void ircc_text_output(struct ircc_state *s, char *text1, char *text2);
73
74void ircc_connected(struct ircc_state *s);
75void ircc_closed(struct ircc_state *s);
76
adamdunkels8fcaca52004-09-05 07:12:39 +000077void ircc_quit(struct ircc_state *s);
78
adamdunkels5a2df1c2004-09-01 19:11:42 +000079#endif /* __IRCC_H__ */