1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <Ecore.h>
#include <Ecore_Con.h>
#include "espik_global.h"
#include "espik_net.h"
#include "espik_common_handler.h"
#include "espik_error.h"
#include "espik_debug.h"
#include "espik.h"
typedef int (*Handler_Func) (void* data, int ev_type, void* ev);
static int ret; /* For debug */
char connected = 0;
Ecore_Con_Server* con_sock;
void espik_con_init (t_info serv_info)
{
int nb_launch;
nb_launch = ecore_con_init ();
/* espik_debug_printf ("nb_launch = %d", nb_launch); */
con_sock = ecore_con_server_connect (ECORE_CON_REMOTE_SYSTEM,
serv_info.server->host, (int)serv_info.server->port, NULL);
if (!con_sock)
{
espik_debug_print ("ecore_con_server_connect failed (ECORE_CON_REMOTE_SYSTEM)");
exit (-1);
}
if (! (ecore_event_handler_add (ECORE_CON_EVENT_SERVER_DATA,
(Handler_Func) server_data, NULL)))
{
espik_debug_print ("ecore_event_handler_add (ECORE_CON_EVENT_SERVER_DATA)");
exit (-1);
}
if (! (ecore_event_handler_add (ECORE_CON_EVENT_SERVER_ADD,
(Handler_Func) espik_con_up, NULL)))
{
espik_debug_print ("ecore_event_handler_add (ECORE_CON_EVENT_SERVER_ADD)");
exit (-1);
}
if (! (ecore_event_handler_add (ECORE_CON_EVENT_SERVER_DEL,
(Handler_Func) espik_con_shutdown, NULL)))
{
espik_debug_print ("ecore_event_handler_add (ECORE_CON_EVENT_SERVER_DEL)");
exit (-1);
}
}
void espik_con_up()
{
printf ("Connected\n");
espik_debug_print ("<<<<<<<< DUMMMMY CODE >>>>>>>");
char *tmp, *tmp2;
tmp = malloc (sizeof(char)* (strlen("NICK ") + strlen (a_infos.client->nickname)));
tmp2 = malloc (sizeof(char)* (strlen("USER localhost:") + strlen(a_infos.client->nickname)*2 + strlen (a_infos.client->realname)));
sprintf (tmp, "NICK %s", a_infos.client->nickname);
sprintf (tmp2, "USER %s %s localhost: %s", a_infos.client->nickname, a_infos.client->nickname, a_infos.client->realname);
espik_raw_send (tmp);
espik_raw_send (tmp2);
espik_raw_send ("JOIN #e.fr");
espik_debug_print ("<<<<<<<< DUMMMMY CODE >>>>>>>");
connected++;
}
void espik_con_shutdown ()
{
/* espik_debug_print ("> espik_con_shutdown"); */
if (!connected)
espik_debug_print ("Unable to connect to server");
espik_debug_print ("ecore_con_server_del: %p", ecore_con_server_del (con_sock));
ecore_con_shutdown ();
/* espik_debug_print ("< espik_con_shutdown"); */
ecore_main_loop_quit ();
}
void espik_raw_send (char *msg)
{
int len;
char* out;
len = strlen (msg) + 3;
out = malloc (sizeof (char) * len);
snprintf (out, len, "%s\r\n", msg);
espik_debug_print ("msg: %s\nout: %s", msg, out);
/*
printf ("out[len-3]: 0x%X\n", out[len - 3]);
printf ("out[len-2]: 0x%X\n", out[len - 2]);
printf ("out[len-1]: 0x%X\n", out[len - 1]);
*/
ret = ecore_con_server_send (con_sock, out, strlen (out));
/* espik_debug_print ("%d", ret); */
free (out);
}
|