r25301: Merge my includes.h cleanups.
[samba.git] / source4 / libcli / raw / clierror.c
1 /* 
2    Unix SMB/CIFS implementation.
3    client error handling routines
4    Copyright (C) Andrew Tridgell 1994-1998
5    Copyright (C) James Myers 2003
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "includes.h"
22 #include "libcli/raw/libcliraw.h"
23
24
25 /***************************************************************************
26  Return an error message from the last response
27 ****************************************************************************/
28 const char *smbcli_errstr(struct smbcli_tree *tree)
29 {   
30         switch (tree->session->transport->error.etype) {
31         case ETYPE_SMB:
32                 return nt_errstr(tree->session->transport->error.e.nt_status);
33
34         case ETYPE_SOCKET:
35                 return "socket_error";
36
37         case ETYPE_NBT:
38                 return "nbt_error";
39
40         case ETYPE_NONE:
41                 return "no_error";
42         }
43         return NULL;
44 }
45
46
47 /* Return the 32-bit NT status code from the last packet */
48 NTSTATUS smbcli_nt_error(struct smbcli_tree *tree)
49 {
50         switch (tree->session->transport->error.etype) {
51         case ETYPE_SMB:
52                 return tree->session->transport->error.e.nt_status;
53
54         case ETYPE_SOCKET:
55                 return NT_STATUS_UNSUCCESSFUL;
56
57         case ETYPE_NBT:
58                 return NT_STATUS_UNSUCCESSFUL;
59
60         case ETYPE_NONE:
61                 return NT_STATUS_OK;
62         }
63
64         return NT_STATUS_UNSUCCESSFUL;
65 }
66
67
68 /* Return true if the last packet was an error */
69 bool smbcli_is_error(struct smbcli_tree *tree)
70 {
71         return NT_STATUS_IS_ERR(smbcli_nt_error(tree));
72 }