ITK Function Reference

(V10000.1.0.60_20160308.00)
nw_errors.h
Go to the documentation of this file.
1 /*==================================================================================================
2 
3  Copyright (c) 2000 Unigraphics Solutions Inc., An EDS Company
4  Unpublished - All rights reserved
5 
6 ====================================================================================================
7 File description:
8 
9  Filename: nw_errors.h
10  Module :
11 
12  Header file to define errors for network services
13 
14 ====================================================================================================
15  Date Name Description of Change
16 09-Aug-2000 Tom McCabe PR 4136983
17 06-Aug-2002 Aaron Ruckman Split libtc.dll project
18 04-Sep-2002 Aaron Ruckman Update headers as part of dll splitiman project
19 22-Nov-2002 Tim Baverstock Normalise inclusion
20 $HISTORY$
21 ==================================================================================================*/
22 /*
23 *
24 * header file to define errors for network services
25 *
26 * revisions
27 * rv date who pr reason for change
28 * 00 10may92 tem initial implementation
29 * 01 13jul92 tem added NW_SERVER_ERROR
30 *
31 */
32 #ifndef NW_ERRORS_H
33 #define NW_ERRORS_H
34 
35 #ifndef EMH_CONST_H
36 #include <common/emh_const.h>
37 #endif
38 
39 #include <ss/libss_exports.h>
40 
41 #define NW_EB EMH_NW_error_base
42 #define NW_NOCRTIPC NW_EB + 1 /* Unable to create net ipc queue */
43 #define NW_NOIPCENTRY NW_EB + 2 /* Unable to create net ipc entry in table */
44 #define NW_NOSUCHIPC NW_EB + 3 /* Unable to find net ipc entry in table */
45 #define NW_NODELIPC NW_EB + 4 /* Unable to delete net ipc queue */
46 #define NW_NOSNDMSG NW_EB + 5 /* Unable to send message to net queue */
47 #define NW_NORCVMSG NW_EB + 6 /* Unable to receive message from net queue*/
48 #define NW_NOPROTOCOL NW_EB + 7 /* Unable to get protocol number */
49 #define NW_NOSERVICE NW_EB + 8 /* Unable to get service by name */
50 #define NW_NOHOST NW_EB + 9 /* Unable to get host by name */
51 #define NW_INCOMP NW_EB + 10 /* Operation incomplete */
52 #define NW_NOACCEPT NW_EB + 11 /* Unable to accept connection */
53 #define NW_SERVER_ERROR NW_EB + 12 /* Unclassified network server error */
54 #define NW_RCV_TIMEDOUT NW_EB + 13 /* Timed out doing recvs */
55 #define NW_SETSOCKOPT_FAIL NW_EB + 14 /* Call to setsockopt failed */
56 
57 #include <ss/libss_undef.h>
58 #endif
59