Some kind of general purpose C library. This is discontinued and only kept as a reference just in case I need something from it.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

122 lines
1.8 KiB

#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <stdio.h>
#include <signal.h>
#include <scot/socket.h>
#include <scot/socket_in.h>
#include <scot/stream.h>
#include <scot/exception.h>
#include <scot_common.h>
struct scot_socket * sock;
struct scot_socket * con_sock;
void
on_exit_func (void)
{
if (con_sock != NULL)
scot_socket_free (con_sock);
scot_socket_free (sock);
scot_socket_fini ();
exc_end ();
}
void
exit_func (int inum)
{
exit (0);
}
int
main (int argc, char * argv [])
{
excenv_t * ee;
scot_socket_init (2,2);
#ifndef WIN32
signal (SIGINT, exit_func);
#endif
atexit (on_exit_func);
TRY
{
sock = scot_socket_in_new ("tcp", "7777");
scot_socket_listen (sock);
}
CATCH (ee)
{
exception_t *e;
while (e = retrive_exception (ee))
{
print_exception (e);
if (EXC_IN_THIS_TRY (e))
{
switch (exc_errnum_get (e))
{
case SCOT_SOCKET_LISTEN_FAIL:
scot_socket_free (sock);
case SCOT_SOCKET_NEW_FAIL:
break;
}
}
free_exception (e);
}
free_catched (ee);
}
TRY
{
while ((con_sock = scot_socket_accept (sock)) >= 0)
{
struct scot_stream * sock_stream;
int i, n;
char puffer [1024];
sock_stream = (struct scot_stream *) con_sock;
while ((n = recv (sock_stream->handle.sock, puffer, 1024, 0)) > 0)
{
printf ("Server: ");
if (puffer [0] == 'q')
break;
for (i=0; i<n-1; i++)
printf ("%c=%02x ", puffer[i], puffer[i]);
printf ("\n");
fflush (stdout);
}
scot_socket_free (con_sock);
con_sock = NULL;
}
}
CATCH (ee)
{
exception_t *e;
while (e = retrive_exception (ee))
{
print_exception (e);
free_exception (e);
}
free_catched (ee);
}
scot_socket_free (sock);
return 0;
}