diff options
author | Chris Toshok <toshok@ximian.com> | 2001-04-23 10:53:27 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2001-04-23 10:53:27 +0800 |
commit | f726a8e69eb490af18825ca2ced6e43b9ba7c8cd (patch) | |
tree | 5630a024fdfa1288a5a3f69ddc68bfbac3d75a9a | |
parent | 2439e91a5c2033c26f014c826e99aa44aa80d08e (diff) | |
download | gsoc2013-evolution-f726a8e69eb490af18825ca2ced6e43b9ba7c8cd.tar gsoc2013-evolution-f726a8e69eb490af18825ca2ced6e43b9ba7c8cd.tar.gz gsoc2013-evolution-f726a8e69eb490af18825ca2ced6e43b9ba7c8cd.tar.bz2 gsoc2013-evolution-f726a8e69eb490af18825ca2ced6e43b9ba7c8cd.tar.lz gsoc2013-evolution-f726a8e69eb490af18825ca2ced6e43b9ba7c8cd.tar.xz gsoc2013-evolution-f726a8e69eb490af18825ca2ced6e43b9ba7c8cd.tar.zst gsoc2013-evolution-f726a8e69eb490af18825ca2ced6e43b9ba7c8cd.zip |
add e-host-utils.[ch]
2001-04-22 Chris Toshok <toshok@ximian.com>
* Makefile.am (libeutil_la_SOURCES): add e-host-utils.[ch]
* e-host-utils.c: new file, with e_gethostbyname_r.
* e-host-utils.h: new file.
svn path=/trunk/; revision=9502
-rw-r--r-- | e-util/ChangeLog | 8 | ||||
-rw-r--r-- | e-util/Makefile.am | 2 | ||||
-rw-r--r-- | e-util/e-host-utils.c | 139 | ||||
-rw-r--r-- | e-util/e-host-utils.h | 39 |
4 files changed, 188 insertions, 0 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 250499876e..b6697b9b92 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,11 @@ +2001-04-22 Chris Toshok <toshok@ximian.com> + + * Makefile.am (libeutil_la_SOURCES): add e-host-utils.[ch] + + * e-host-utils.c: new file, with e_gethostbyname_r. + + * e-host-utils.h: new file. + 2001-04-19 Dan Winship <danw@ximian.com> * e-html-utils.c (is_citation): ">From" is not a citation unless diff --git a/e-util/Makefile.am b/e-util/Makefile.am index 6050a8b049..4d36b9282f 100644 --- a/e-util/Makefile.am +++ b/e-util/Makefile.am @@ -23,6 +23,8 @@ libeutil_la_SOURCES = \ e-gtk-utils.h \ e-gui-utils.c \ e-gui-utils.h \ + e-host-utils.c \ + e-host-utils.h \ e-html-utils.c \ e-html-utils.h \ e-iterator.c \ diff --git a/e-util/e-host-utils.c b/e-util/e-host-utils.c new file mode 100644 index 0000000000..9dfbcc1f59 --- /dev/null +++ b/e-util/e-host-utils.c @@ -0,0 +1,139 @@ +/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ +/* e-host-utils.c + * + * Copyright (C) 2001 Helix Code, Inc. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: Chris Toshok + */ + +#include <config.h> +#include "e-msgport.h" +#include "e-host-utils.h" +#include <string.h> +#include <stdlib.h> +#include <stdio.h> +#include <errno.h> + +#ifndef HAVE_GETHOSTBYNAME_R +static EMutex *gethost_mutex = NULL; +#endif + +void +e_gethostbyname_init () +{ +#ifndef HAVE_GETHOSTBYNAME_R + if (gethost_mutex) + return; + + gethost_mutex = e_mutex_new (E_MUTEX_SIMPLE); +#endif +} + +int +e_gethostbyname_r (const char *name, struct hostent *host, + char *buf, int buflen, int *herr) +{ +#ifdef HAVE_GETHOSTBYNAME_R +#ifdef GETHOSTBYNAME_R_FIVE_ARGS + return gethostbyname_r(name, host, buf, buflen, herr); +#else + struct hostent *hp; + return gethostbyname_r(name, host, buf, buflen, &hp, herr); +#endif +#else + int i; + char *p; + struct hostent *h; + int req_length; + int num_aliases = 0, num_addrs = 0; + + if (!gethost_mutex) { + g_warning ("mutex wasn't initialized - you must call e_gethostbyname_init before e_gethostbyname_r\n"); + return -1; + } + + e_mutex_lock (gethost_mutex); + + h = gethostbyname (name); + + if (!h) { + e_mutex_unlock (gethost_mutex); + return -1; + } + + /* check to make sure we have enough room in our buffer */ + req_length = 0; + if (h->h_aliases) { + for (i = 0; h->h_aliases[i]; i ++) + req_length += strlen (h->h_aliases[i]) + 1; + num_aliases = i + 1; + } + if (h->h_addr_list) { + for (i = 0; h->h_addr_list[i]; i ++) + req_length += h->h_length; + num_addrs = i + 1; + } + + if (buflen < req_length) { + *herr = ERANGE; + e_mutex_unlock (gethost_mutex); + return -1; + } + + if (num_aliases) + host->h_aliases = malloc (sizeof (char*) * num_aliases); + else + host->h_aliases = NULL; + if (num_addrs) + host->h_addr_list = malloc (sizeof (char*) * num_addrs); + else + host->h_addr_list = NULL; + + host->h_name = strdup (h->h_name); + host->h_addrtype = h->h_addrtype; + host->h_length = h->h_length; + + /* copy the aliases/addresses into the buffer, and assign the + pointers into the hostent */ + *buf = 0; + p = buf; + if (num_aliases) { + for (i = 0; h->h_aliases[i]; i ++) { + strcpy (buf, h->h_aliases[i]); + host->h_aliases[i] = p; + p += strlen (h->h_aliases[i]); + } + host->h_aliases[num_aliases - 1] = NULL; + } + + if (num_addrs) { + for (i = 0; h->h_addr_list[i]; i ++) { + memcpy (buf, h->h_addr_list[i], h->h_length); + host->h_addr_list[i] = p; + p += h->h_length; + } + host->h_addr_list[num_addrs - 1] = NULL; + } + + *herr = h_errno; + + e_mutex_unlock (gethost_mutex); + + return 0; +#endif +} diff --git a/e-util/e-host-utils.h b/e-util/e-host-utils.h new file mode 100644 index 0000000000..b111d05942 --- /dev/null +++ b/e-util/e-host-utils.h @@ -0,0 +1,39 @@ +/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ +/* e-host-utils.h + * + * Copyright (C) 2001 Helix Code, Inc. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: Chris Toshok + */ + +#ifndef E_HOST_UTILS_H +#define E_HOST_UTILS_H + +#include <sys/types.h> +#include <netdb.h> + +void e_gethostbyname_init (void); + +/* gethostbyname_r implementation that works for systems without a + native gethostbyname_r. if you use this, you must make sure to + *only* use this - it can't even coexist with naked calls to + gethostbyname (even if they exist in libraries.) yes, this loses + in many ways. blame your local OS developer. */ +int e_gethostbyname_r (const char *name, struct hostent *host, char *buf, int buflen, int *herr); + +#endif /* E_HOST_UTILS_H */ |