1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/* mod_ntlm file: $Id: rfcnb-error.h,v 1.3 2003/02/21 01:55:14 casz Exp $ */
#ifndef RFCNB_ERROR_H
#define RFCNB_ERROR_H
/* UNIX RFCNB (RFC1001/RFC1002) NetBIOS implementation
*
* Version 1.0 RFCNB Error Response Defines
*
* Copyright (C) Richard Sharpe 1996
*
*/
/*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. This program is distributed in the hope
* that it will be useful, but WITHOUT ANY WARRANTY; without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details. You
* should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 675 Mass Ave, Cambridge, MA 02139, USA. */
/* Error responses */
#define RFCNBE_Bad -1 /* Bad response */
#define RFCNBE_OK 0
/* these should follow the spec ... is there one ? */
#define RFCNBE_NoSpace 1 /* Could not allocate space for a struct */
#define RFCNBE_BadName 2 /* Could not translate a name */
#define RFCNBE_BadRead 3 /* Read sys call failed */
#define RFCNBE_BadWrite 4 /* Write Sys call failed */
#define RFCNBE_ProtErr 5 /* Protocol Error */
#define RFCNBE_ConGone 6 /* Connection dropped */
#define RFCNBE_BadHandle 7 /* Handle passed was bad */
#define RFCNBE_BadSocket 8 /* Problems creating socket */
#define RFCNBE_ConnectFailed 9 /* Connect failed */
#define RFCNBE_CallRejNLOCN 10 /* Call rejected, not listening on CN */
#define RFCNBE_CallRejNLFCN 11 /* Call rejected, not listening for CN */
#define RFCNBE_CallRejCNNP 12 /* Call rejected, called name not present */
#define RFCNBE_CallRejInfRes 13 /* Call rejetced, name ok, no resources */
#define RFCNBE_CallRejUnSpec 14 /* Call rejected, unspecified error */
#define RFCNBE_BadParam 15 /* Bad parameters passed ... */
#define RFCNBE_Timeout 16 /* IO Timed out */
#endif
|