socket.h
author Tero Marttila <terom@fixme.fi>
Mon, 07 Jul 2008 21:32:38 +0300
changeset 28 c239c5c3beda
parent 27 1e79b4cc8f1b
child 38 9894df13b779
permissions -rw-r--r--
strip down the scriptaculous javascript code to a bare minimum, and rewrite tiles.js as tiles2.js - uses Classes, so the code is a lot neater. Still a couple bugs to work out, but mostly works

committer: Tero Marttila <terom@fixme.fi>
#ifndef SOCKET_H
#define SOCKET_H

#include "config.h"

#define SOCKET_LISTEN_BACKLOG 128

int socket_listen (struct config_endpoint *endpoint, int sock_type);
int socket_connect_async (struct config_endpoint *endpoint, int sock_type);

#endif /* SOCKET_H */