aboutsummaryrefslogtreecommitdiff
path: root/src/backend/port/gethostname.c
blob: 568a2221a9d73b37ebe3c9d2f2f5a156ad4efff1 (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
/* $Id: gethostname.c,v 1.5 2001/08/24 14:07:49 petere Exp $ */

#include "c.h"

#include <sys/types.h>
#include <string.h>

#include <sys/utsname.h>

int
gethostname(char *name, int namelen)
{
	static struct utsname mname;
	static int	called = 0;

	if (!called)
	{
		called++;
		uname(&mname);
	}
	strncpy(name, mname.nodename, (SYS_NMLN < namelen ? SYS_NMLN : namelen));

	return 0;
}