00001 /* 00002 * socket.h - TCP/IP socket routines. 00003 * This file is part of the FreeLCD package. 00004 * 00005 * $Id: socket_8h-source.html,v 1.1 2003/02/16 22:50:41 unicorn Exp $ 00006 * 00007 * This program is free software; you can redistribute it and/or modify it 00008 * under the terms of the GNU General Public License as published by the 00009 * Free Software Foundation; either version 2 of the License, or (at your 00010 * option) any later version. 00011 * 00012 * This program is distributed in the hope that it will be useful, 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 * GNU General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU General Public License 00018 * along with this program; if not, write to the Free Software 00019 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 00020 * MA 02111-1307 USA 00021 * 00022 * Copyright (c) 2002, 2003, Jeroen van den Berg <unicorn@hippie.nu> 00023 */ 00024 00025 00026 #ifndef _FLCD_SOCKET_H 00027 #define _FLCD_SOCKET_H 00028 00029 #include <sys/select.h> 00030 00031 typedef int socket_t; 00032 00033 /* Create a plain socket and return the handle */ 00034 socket_t socket_create (const char *addr, unsigned port); 00035 00036 /* Create a server socket and return the handle */ 00037 socket_t socket_create_server (unsigned port, fd_set * fdset); 00038 00039 /* Poll server socket for connections and/or clients sending data */ 00040 int 00041 socket_poll (socket_t sock, fd_set * fdset, 00042 void (*callback_newconn) (socket_t sock), 00043 void (*callback_data) (socket_t sock, char *data, int len), 00044 void (*callback_close) (socket_t sock)); 00045 00046 #endif /* Multiple include guard */