handle OTP_RC_NEXTPASSCODE error from otpd-2.2.1+
[freeradius.git] / src / modules / rlm_smb / rfcnb.h
1 /* UNIX RFCNB (RFC1001/RFC1002) NetBIOS implementation
2
3    Version 1.0
4    RFCNB Defines
5
6    Copyright (C) Richard Sharpe 1996
7    Copyright 2006 The FreeRADIUS server project
8
9 */
10
11 /*
12    This program is free software; you can redistribute it and/or modify
13    it under the terms of the GNU General Public License as published by
14    the Free Software Foundation; either version 2 of the License, or
15    (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20    GNU General Public License for more details.
21
22    You should have received a copy of the GNU General Public License
23    along with this program; if not, write to the Free Software
24    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 */
26
27 #include <freeradius-devel/ident.h>
28 RCSIDH(rfcnb_h, "$Id$")
29
30 /* Error responses */
31
32 #include "rfcnb-error.h"
33 #include "rfcnb-common.h"
34
35 /* Defines we need */
36
37 #define RFCNB_Default_Port 139
38
39 /* Definition of routines we define */
40
41 void *RFCNB_Call(char *Called_Name, char *Calling_Name, char *Called_Address,
42                  int port);
43
44 int RFCNB_Send(void *Con_Handle, struct RFCNB_Pkt *Data, int Length);
45
46 int RFCNB_Recv(void *Con_Handle, struct RFCNB_Pkt *Data, int Length);
47
48 int RFCNB_Hangup(void *con_Handle);
49
50 void *RFCNB_Listen();
51
52 void RFCNB_Get_Error(char *buffer, int buf_len);
53
54 struct RFCNB_Pkt *RFCNB_Alloc_Pkt(int n);