Added CVS id.

pull/1/head
Gisle Vanem 19 years ago
parent 4cef1942be
commit f6e7395ca0
  1. 2
      ares__close_sockets.c
  2. 2
      ares__get_hostent.c
  3. 2
      ares__read_line.c
  4. 2
      ares_cancel.c
  5. 2
      ares_destroy.c
  6. 2
      ares_expand_name.c
  7. 6
      ares_expand_string.c
  8. 2
      ares_free_hostent.c
  9. 3
      ares_free_string.c
  10. 2
      ares_gethostbyname.c
  11. 3
      ares_mkquery.c
  12. 2
      ares_parse_a_reply.c
  13. 2
      ares_parse_ptr_reply.c
  14. 2
      ares_query.c
  15. 2
      ares_search.c
  16. 2
      ares_send.c
  17. 2
      ares_strerror.c
  18. 2
      ares_timeout.c
  19. 2
      bitncmp.c
  20. 2
      inet_net_pton.c
  21. 2
      setup.h
  22. 2
      windows_port.c

@ -1,3 +1,5 @@
/* $Id: */
/* Copyright 1998 by the Massachusetts Institute of Technology.
*
* Permission to use, copy, modify, and distribute this

@ -1,3 +1,5 @@
/* $Id: */
/* Copyright 1998 by the Massachusetts Institute of Technology.
*
* Permission to use, copy, modify, and distribute this

@ -1,3 +1,5 @@
/* $Id: */
/* Copyright 1998 by the Massachusetts Institute of Technology.
*
* Permission to use, copy, modify, and distribute this

@ -1,3 +1,5 @@
/* $Id: */
/* Copyright (C) 2004 by Daniel Stenberg et al
*
* Permission to use, copy, modify, and distribute this software and its

@ -1,3 +1,5 @@
/* $Id: */
/* Copyright 1998 by the Massachusetts Institute of Technology.
*
* Permission to use, copy, modify, and distribute this

@ -1,3 +1,5 @@
/* $Id: */
/* Copyright 1998 by the Massachusetts Institute of Technology.
*
* Permission to use, copy, modify, and distribute this

@ -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;
}

@ -1,3 +1,5 @@
/* $Id: */
/* Copyright 1998 by the Massachusetts Institute of Technology.
*
* Permission to use, copy, modify, and distribute this

@ -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)
{

@ -1,3 +1,5 @@
/* $Id: */
/* Copyright 1998 by the Massachusetts Institute of Technology.
*
* Permission to use, copy, modify, and distribute this

@ -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

@ -1,3 +1,5 @@
/* $Id: */
/* Copyright 1998 by the Massachusetts Institute of Technology.
*
* Permission to use, copy, modify, and distribute this

@ -1,3 +1,5 @@
/* $Id: */
/* Copyright 1998 by the Massachusetts Institute of Technology.
*
* Permission to use, copy, modify, and distribute this

@ -1,3 +1,5 @@
/* $Id: */
/* Copyright 1998 by the Massachusetts Institute of Technology.
*
* Permission to use, copy, modify, and distribute this

@ -1,3 +1,5 @@
/* $Id: */
/* Copyright 1998 by the Massachusetts Institute of Technology.
*
* Permission to use, copy, modify, and distribute this

@ -1,3 +1,5 @@
/* $Id: */
/* Copyright 1998 by the Massachusetts Institute of Technology.
*
* Permission to use, copy, modify, and distribute this

@ -1,3 +1,5 @@
/* $Id: */
/* Copyright 1998 by the Massachusetts Institute of Technology.
*
* Permission to use, copy, modify, and distribute this

@ -1,3 +1,5 @@
/* $Id: */
/* Copyright 1998 by the Massachusetts Institute of Technology.
*
* Permission to use, copy, modify, and distribute this

@ -1,3 +1,5 @@
/* $Id: */
/*
* Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
* Copyright (c) 1996,1999 by Internet Software Consortium.

@ -1,3 +1,5 @@
/* $Id: */
/*
* Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
* Copyright (c) 1996,1999 by Internet Software Consortium.

@ -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

@ -1,5 +1,7 @@
#include "setup.h"
/* $Id: */
/* only do the following on windows
*/
#if (defined(WIN32) || defined(WATT32)) && !defined(MSDOS)

Loading…
Cancel
Save