#include #include #include #include #include #include #include #include #include int main (int argc, char * argv []) { excenv_t * ee; struct scot_socket * sock; char puffer [1024]; struct scot_stream * sock_stream; scot_socket_init (2,2); atexit (exc_end); atexit (scot_socket_fini); TRY { sock = scot_socket_in_new ("tcp", "7777"); /*scot_socket_connect (sock, "10.2.5.50");*/ scot_socket_connect (sock, "localhost"); sock_stream = (struct scot_stream *) sock; printf ("Client: "); fflush (stdout); while (fgets (puffer, 1024, stdin) != NULL) { if (send (sock_stream->handle.sock, puffer, strlen (puffer), 0) != strlen (puffer)) THROW (EXC (EXC_ERROR, errno, "Client: Fehler beim schreiben.")); if (strlen (puffer) == 2 && puffer [0] == 'q') break; printf ("Client: "); fflush (stdout); } scot_socket_free (sock); } CATCH (ee) { exception_t *e; while (e = retrive_exception (ee)) { switch (exc_errnum_get (e)) { case SCOT_SOCKET_CONNECT_FAIL: scot_socket_free (sock); case SCOT_SOCKET_NEW_FAIL: break; } print_exception (e); free_exception (e); } free_catched (ee); } return 0; }