00001 #ifndef HEADER_CURL_SOCKADDR_H 00002 #define HEADER_CURL_SOCKADDR_H 00003 /*************************************************************************** 00004 * _ _ ____ _ 00005 * Project ___| | | | _ \| | 00006 * / __| | | | |_) | | 00007 * | (__| |_| | _ <| |___ 00008 * \___|\___/|_| \_\_____| 00009 * 00010 * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al. 00011 * 00012 * This software is licensed as described in the file COPYING, which 00013 * you should have received as part of this distribution. The terms 00014 * are also available at https://curl.haxx.se/docs/copyright.html. 00015 * 00016 * You may opt to use, copy, modify, merge, publish, distribute and/or sell 00017 * copies of the Software, and permit persons to whom the Software is 00018 * furnished to do so, under the terms of the COPYING file. 00019 * 00020 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 00021 * KIND, either express or implied. 00022 * 00023 ***************************************************************************/ 00024 00025 #include "curl_setup.h" 00026 00027 struct Curl_sockaddr_storage { 00028 union { 00029 struct sockaddr sa; 00030 struct sockaddr_in sa_in; 00031 #ifdef ENABLE_IPV6 00032 struct sockaddr_in6 sa_in6; 00033 #endif 00034 #ifdef HAVE_STRUCT_SOCKADDR_STORAGE 00035 struct sockaddr_storage sa_stor; 00036 #else 00037 char cbuf[256]; /* this should be big enough to fit a lot */ 00038 #endif 00039 } buffer; 00040 }; 00041 00042 #endif /* HEADER_CURL_SOCKADDR_H */ 00043