blob: 1ccfdbd7b52489346e53f59542124ee6d0781c33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/** BEGIN COPYRIGHT BLOCK
* Copyright 2001 Sun Microsystems, Inc.
* Portions copyright 1999, 2001-2003 Netscape Communications Corporation.
* All rights reserved.
* END COPYRIGHT BLOCK **/
/*
* net.c: sockets abstraction and DNS related things
*
* Note: sockets created with net_socket are placed in non-blocking mode,
* however this API simulates that the calls are blocking.
*
* Rob McCool
*/
#include "netsite.h"
#include <nspr.h>
#include "util.h"
#include <string.h>
#ifdef XP_UNIX
#include <arpa/inet.h> /* inet_ntoa */
#include <netdb.h> /* hostent stuff */
#ifdef NEED_GHN_PROTO
extern "C" int gethostname (char *name, size_t namelen);
#endif
#endif /* XP_UNIX */
#ifdef LINUX
#include <sys/ioctl.h> /* ioctl */
#endif
#include "libadmin/libadmin.h"
/* ---------------------------- util_hostname ----------------------------- */
#ifdef XP_UNIX
#include <sys/param.h>
#else /* WIN32 */
#define MAXHOSTNAMELEN 255
#endif /* XP_UNIX */
/* Defined in dns.cpp */
char *net_find_fqdn(PRHostEnt *p);
NSAPI_PUBLIC char *util_hostname(void)
{
char str[MAXHOSTNAMELEN];
PRHostEnt hent;
char buf[PR_NETDB_BUF_SIZE];
PRStatus err;
gethostname(str, MAXHOSTNAMELEN);
err = PR_GetHostByName(
str,
buf,
PR_NETDB_BUF_SIZE,
&hent);
if (err == PR_FAILURE)
return NULL;
return net_find_fqdn(&hent);
}
|