| /////////////////////////////////////////////////////////////////////////////// |
| //// Licensed Materials - Property of IBM |
| //// ZOSLIB |
| //// (C) Copyright IBM Corp. 2022. All Rights Reserved. |
| //// US Government Users Restricted Rights - Use, duplication |
| //// or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. |
| ///////////////////////////////////////////////////////////////////////////////// |
| // |
| #ifndef ZOS_NETDB_H |
| #define ZOS_NETDB_H |
| |
| #include_next <netdb.h> |
| |
| #ifndef NI_MAXHOST |
| #define NI_MAXHOST 1025 |
| #endif |
| |
| #ifndef NI_MAXSERV |
| #define NI_MAXSERV 32 |
| #endif |
| |
| #endif |