Added CVS id.
authorGisle Vanem <gvanem@broadpark.no>
Sat, 22 Jul 2006 15:21:13 +0000 (15:21 +0000)
committerGisle Vanem <gvanem@broadpark.no>
Sat, 22 Jul 2006 15:21:13 +0000 (15:21 +0000)
22 files changed:
ares__close_sockets.c
ares__get_hostent.c
ares__read_line.c
ares_cancel.c
ares_destroy.c
ares_expand_name.c
ares_expand_string.c
ares_free_hostent.c
ares_free_string.c
ares_gethostbyname.c
ares_mkquery.c
ares_parse_a_reply.c
ares_parse_ptr_reply.c
ares_query.c
ares_search.c
ares_send.c
ares_strerror.c
ares_timeout.c
bitncmp.c
inet_net_pton.c
setup.h
windows_port.c

index 7475a4b..dcb319e 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright 1998 by the Massachusetts Institute of Technology.
  *
  * Permission to use, copy, modify, and distribute this
index ca6f2f1..5220400 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright 1998 by the Massachusetts Institute of Technology.
  *
  * Permission to use, copy, modify, and distribute this
index f4d4f50..d965904 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright 1998 by the Massachusetts Institute of Technology.
  *
  * Permission to use, copy, modify, and distribute this
index 4df1e9f..f2f6c7e 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright (C) 2004 by Daniel Stenberg et al
  *
  * Permission to use, copy, modify, and distribute this software and its
index d3860da..61028a6 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright 1998 by the Massachusetts Institute of Technology.
  *
  * Permission to use, copy, modify, and distribute this
index 8c5be9b..950ea74 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright 1998 by the Massachusetts Institute of Technology.
  *
  * Permission to use, copy, modify, and distribute this
index dcb0c02..58d209a 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright 1998 by the Massachusetts Institute of Technology.
  *
  * Permission to use, copy, modify, and distribute this
@@ -53,13 +55,13 @@ int ares_expand_string(const unsigned char *encoded,
   *s = malloc(len+1);
   if (*s == NULL)
     return ARES_ENOMEM;
-  q = *s; 
+  q = *s;
   strncpy((char *)q, (char *)encoded, len);
   q[len] = '\0';
 
   *s = q;
 
-  *enclen = len+1; 
+  *enclen = len+1;
 
   return ARES_SUCCESS;
 }
index 8d6967e..a41624f 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright 1998 by the Massachusetts Institute of Technology.
  *
  * Permission to use, copy, modify, and distribute this
index 5fa646b..2da45bc 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright 2000 by the Massachusetts Institute of Technology.
  *
  * Permission to use, copy, modify, and distribute this
@@ -16,6 +18,7 @@
 #include "setup.h"
 #include <stdlib.h>
 #include "ares.h"
+#include "ares_private.h"
 
 void ares_free_string(void *str)
 {
index bdc9029..e1696ac 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright 1998 by the Massachusetts Institute of Technology.
  *
  * Permission to use, copy, modify, and distribute this
index d5c40cb..43b6754 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright 1998 by the Massachusetts Institute of Technology.
  *
  * Permission to use, copy, modify, and distribute this
@@ -30,6 +32,7 @@
 #include <string.h>
 #include "ares.h"
 #include "ares_dns.h"
+#include "ares_private.h"
 
 /* Header format, from RFC 1035:
  *                                  1  1  1  1  1  1
index 8f69bf0..60246d3 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright 1998 by the Massachusetts Institute of Technology.
  *
  * Permission to use, copy, modify, and distribute this
index 2bac907..21ea8fa 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright 1998 by the Massachusetts Institute of Technology.
  *
  * Permission to use, copy, modify, and distribute this
index 47c0670..4f044d8 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright 1998 by the Massachusetts Institute of Technology.
  *
  * Permission to use, copy, modify, and distribute this
index dc416c0..816e160 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright 1998 by the Massachusetts Institute of Technology.
  *
  * Permission to use, copy, modify, and distribute this
index 83cea80..f0a85ad 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright 1998 by the Massachusetts Institute of Technology.
  *
  * Permission to use, copy, modify, and distribute this
index 6e9fa0e..326e6fb 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright 1998 by the Massachusetts Institute of Technology.
  *
  * Permission to use, copy, modify, and distribute this
index c550218..c6af87e 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /* Copyright 1998 by the Massachusetts Institute of Technology.
  *
  * Permission to use, copy, modify, and distribute this
index 0da540f..0d4ce56 100644 (file)
--- a/bitncmp.c
+++ b/bitncmp.c
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /*
  * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
  * Copyright (c) 1996,1999 by Internet Software Consortium.
index e028ec6..3621bb8 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id: */
+
 /*
  * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
  * Copyright (c) 1996,1999 by Internet Software Consortium.
diff --git a/setup.h b/setup.h
index c6ec261..4dcfa81 100644 (file)
--- a/setup.h
+++ b/setup.h
@@ -1,6 +1,8 @@
 #ifndef __ARES_SETUP_H
 #define __ARES_SETUP_H
 
+/* $Id: */
+
 /* Copyright (C) 2004 - 2005 by Daniel Stenberg et al
  *
  * Permission to use, copy, modify, and distribute this software and its
index e80d00d..3dc8c78 100644 (file)
@@ -1,5 +1,7 @@
 #include "setup.h"
 
+/* $Id: */
+
 /* only do the following on windows
  */
 #if (defined(WIN32) || defined(WATT32)) && !defined(MSDOS)