add socket server to run_loop

This commit is contained in:
matthias.ringwald 2009-07-12 19:41:30 +00:00
parent b2ae9e32ee
commit 71974eda64

View File

@ -194,6 +194,8 @@ data_source_t * socket_server_create_tcp(int port){
return NULL; return NULL;
} }
run_loop_add(ds);
printf ("Server up and running ...\n"); printf ("Server up and running ...\n");
return ds; return ds;
} }