hostpid.c revision 6217edd5f4cdc9f81a2b6682bfacc80ab1b458b6
/* Copyright (c) 2002-2010 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "hostpid.h"
#include <unistd.h>
#include <netdb.h>
const char *my_hostname = NULL;
void hostpid_init(void)
{
/* allow calling hostpid_init() multiple times to reset hostname */
}
const char *my_hostdomain(void)
{
const char *name;
/* failed, use just the hostname */
name = my_hostname;
}
}
return my_domain;
}