summaryrefslogtreecommitdiff
path: root/lib/sockaddr.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-11-11 22:04:11 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-11-11 22:04:11 +0000
commit37a6a0bb3efc1433609c3d17f5b15c9fb83864a6 (patch)
treec2dcd4589690101dc73f20d43fadedbcd2964217 /lib/sockaddr.h
parent6bcca3eca985b4ee1d4e8466e44a53eb23c5f090 (diff)
downloadcurl-37a6a0bb3efc1433609c3d17f5b15c9fb83864a6.tar.gz
Moved the sockaddr_storage definition to lib/sockaddr.h and only include that
in files that actually need the struct.
Diffstat (limited to 'lib/sockaddr.h')
-rw-r--r--lib/sockaddr.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/sockaddr.h b/lib/sockaddr.h
new file mode 100644
index 000000000..938d20b20
--- /dev/null
+++ b/lib/sockaddr.h
@@ -0,0 +1,36 @@
+#ifndef __SOCKADDR_H
+#define __SOCKADDR_H
+/***************************************************************************
+ * _ _ ____ _
+ * Project ___| | | | _ \| |
+ * / __| | | | |_) | |
+ * | (__| |_| | _ <| |___
+ * \___|\___/|_| \_\_____|
+ *
+ * Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al.
+ *
+ * This software is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at http://curl.haxx.se/docs/copyright.html.
+ *
+ * You may opt to use, copy, modify, merge, publish, distribute and/or sell
+ * copies of the Software, and permit persons to whom the Software is
+ * furnished to do so, under the terms of the COPYING file.
+ *
+ * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
+ * KIND, either express or implied.
+ *
+ * $Id$
+ ***************************************************************************/
+
+#include "setup.h"
+
+#ifndef HAVE_STRUCT_SOCKADDR_STORAGE
+struct sockaddr_storage
+ {
+ char buffer[256]; /* this should be big enough to fit a lot */
+ };
+#endif
+
+
+#endif /* __SOCKADDR_H */