aboutsummaryrefslogtreecommitdiff
path: root/src/espik_net.c
diff options
context:
space:
mode:
authorbeber <beber>2006-01-12 02:45:18 +0000
committerbeber <beber>2006-01-12 02:45:18 +0000
commitef65e849f5671f0b3696c6b366e367437b36d7da (patch)
treeed85d8f977f6513a9e9a7393285fb77304a9eabf /src/espik_net.c
parentNew ignore for windows (diff)
downloadespik-ef65e849f5671f0b3696c6b366e367437b36d7da.tar.xz
comment and unused code
Diffstat (limited to 'src/espik_net.c')
-rw-r--r--src/espik_net.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/espik_net.c b/src/espik_net.c
index 38bd304..d8cec3f 100644
--- a/src/espik_net.c
+++ b/src/espik_net.c
@@ -28,7 +28,9 @@ void espik_con_init (t_info serv_info)
nb_launch = ecore_con_init ();
-/* espik_debug_printf ("nb_launch = %d", nb_launch); */
+ /*
+ espik_debug_printf ("nb_launch = %d", nb_launch);
+ */
con_sock = ecore_con_server_connect (ECORE_CON_REMOTE_SYSTEM,
serv_info.server->host,
@@ -98,7 +100,6 @@ void espik_con_up()
void espik_con_shutdown ()
{
espik_enter();
-/* espik_debug_print ("> espik_con_shutdown"); */
if (!connected)
espik_debug_print ("Unable to connect to server");
@@ -107,7 +108,6 @@ void espik_con_shutdown ()
ecore_con_server_del (con_sock));
ecore_con_shutdown ();
-/* espik_debug_print ("< espik_con_shutdown"); */
ecore_main_loop_quit ();
espik_leave();
}
@@ -123,9 +123,9 @@ void espik_raw_send (char *msg)
espik_debug_print ("msg: %s\nout: %s", msg, buf.buf);
/*
- 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]);
+ 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, buf.buf, buf.len);