Contiki 3.x
ircc.h
1 /*
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  *
33  */
34 #ifndef IRCC_H_
35 #define IRCC_H_
36 
37 #include "contiki-net.h"
38 
39 struct ircc_state {
40 
41  struct pt pt;
42  struct psock s;
43 
44  struct uip_conn *conn;
45 
46  unsigned char command;
47 
48  char *msg;
49  char channel[32];
50  char outputbuf[200];
51  char inputbuf[400];
52  char *nick;
53  char *server;
54 };
55 
56 void ircc_init(void);
57 
58 void ircc_appcall(void *s);
59 
60 struct ircc_state *ircc_connect(struct ircc_state *s,
61  char *server, uip_ipaddr_t *ipaddr, char *nick);
62 
63 void ircc_join(struct ircc_state *s, char *channel);
64 void ircc_part(struct ircc_state *s);
65 void ircc_list(struct ircc_state *s);
66 void ircc_msg(struct ircc_state *s, char *msg);
67 void ircc_actionmsg(struct ircc_state *s, char *msg);
68 
69 void ircc_sent(struct ircc_state *s);
70 
71 void ircc_text_output(struct ircc_state *s, char *text1, char *text2);
72 
73 void ircc_connected(struct ircc_state *s);
74 void ircc_closed(struct ircc_state *s);
75 
76 void ircc_quit(struct ircc_state *s);
77 
78 #endif /* IRCC_H_ */
Representation of a uIP TCP connection.
Definition: uip.h:1336
The representation of a protosocket.
Definition: psock.h:112