Please wait until the page is fully downloaded and then press the "Expand" button or the blue line numbers.

0005001 /*
0005002 inet/const.h
0005003 
0005004 Created:       Dec 30, 1991 by Philip Homburg
0005005 
0005006 Copyright 1995 Philip Homburg
0005007 */
0005008 
0005009 #ifndef INET__CONST_H
0005010 #define INET__CONST_H
0005011 
0005012 #ifndef DEBUG
0005013 #define DEBUG       0
0005014 #endif
0005015 
0005016 #ifndef NDEBUG
0005017 #define NDEBUG       (CRAMPED)
0005018 #endif
0005019 
0005020 #define CLOCK_GRAN       1       /* in HZ */
0005021 
0005022 #if DEBUG
0005023 #define where()       printf("%s, %d: ", __FILE__, __LINE__)
0005024 #endif
0005025 
0005026 #define NW_SUSPEND       SUSPEND
0005027 #define NW_WOULDBLOCK       EWOULDBLOCK
0005028 #define NW_OK              OK
0005029 
0005030 #define BUF_S              512
0005031 
0005032 #endif /* INET__CONST_H */
0005033 
0005034 /*
0005035  * $PchId: const.h,v 1.6 1995/11/21 06:54:39 philip Exp $
0005036  */