27 lines
1.3 KiB
C
27 lines
1.3 KiB
C
/*****************************************************************************\
|
|
* *
|
|
* Filename: netdb.h *
|
|
* *
|
|
* Description: Network definitions *
|
|
* *
|
|
* Notes: *
|
|
* *
|
|
* History: *
|
|
* 2012-01-24 JFL Created this file. *
|
|
* *
|
|
* Copyright 2016 Hewlett Packard Enterprise Development LP *
|
|
* Licensed under the Apache 2.0 license - www.apache.org/licenses/LICENSE-2.0 *
|
|
\*****************************************************************************/
|
|
|
|
#ifndef _NETDB_H
|
|
#define _NETDB_H 1
|
|
|
|
/* Absolute file name for network data base files. */
|
|
#define _PATH_HOSTS "C:/Windows/System32/drivers/etc/hosts"
|
|
#define _PATH_NETWORKS "C:/Windows/System32/drivers/etc/networks"
|
|
#define _PATH_PROTOCOLS "C:/Windows/System32/drivers/etc/protocols"
|
|
#define _PATH_SERVICES "C:/Windows/System32/drivers/etc/services"
|
|
|
|
#endif /* _NETDB_H */
|
|
|