00001 /*************************************************************************** 00002 sock.h - description 00003 ------------------- 00004 begin : Thu Dec 9 2004 00005 copyright : (C) 2004 by VooDooMan 00006 email : vdmfun@hotmail.com 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 00011 VooDoo cIRCle - an IRC (ro)bot 00012 Copyright (C) 2004 by Marian VooDooMan Meravy (vdmfun@hotmail.com) 00013 00014 This program is free software; you can redistribute it and/or 00015 modify it under the terms of the GNU General Public License 00016 as published by the Free Software Foundation; either version 2 00017 of the License, or (at your option) any later version. 00018 00019 This program is distributed in the hope that it will be useful, 00020 but WITHOUT ANY WARRANTY; without even the implied warranty of 00021 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00022 GNU General Public License for more details. 00023 00024 You should have received a copy of the GNU General Public License 00025 along with this program; if not, write to the Free Software 00026 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00027 00028 ****************************************************************************/ 00029 00030 /*! 00031 \file 00032 \brief Provides low-level IP socket communication 00033 */ 00034 00035 //--------------------------------------------------------------------------- 00036 00037 #ifndef sockH 00038 #define sockH 00039 //--------------------------------------------------------------------------- 00040 00041 #include <time.h> 00042 #include <string> 00043 00044 #include "win_sock.h" 00045 00046 void sock_send_cache(); 00047 void sock_flush_later(s_socket& socket); 00048 void sock_cancel_caching(s_socket& socket); 00049 time_t sock_get_last_io(s_socket& socket, char mode='a'); 00050 void sock_unread(s_socket& socket, char* data, size_t size); 00051 00052 void sock_async(s_socket& socket); 00053 00054 int sock_get_address_type(std::string host); 00055 00056 #endif