rfcnb-util.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
3  *
4  * Squid software is distributed under GPLv2+ license and includes
5  * contributions from numerous individuals and organizations.
6  * Please see the COPYING and CONTRIBUTORS files for details.
7  */
8 
9 /* UNIX RFCNB (RFC1001/RFC1002) NetBIOS implementation
10  *
11  * Version 1.0
12  * RFCNB Utility Defines
13  *
14  * Copyright (C) Richard Sharpe 1996
15  */
16 
17 /*
18  * This program is free software; you can redistribute it and/or modify
19  * it under the terms of the GNU General Public License as published by
20  * the Free Software Foundation; either version 2 of the License, or
21  * (at your option) any later version.
22  *
23  * This program is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26  * GNU General Public License for more details.
27  *
28  * You should have received a copy of the GNU General Public License
29  * along with this program; if not, write to the Free Software
30  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
31  */
32 
33 #ifndef SQUID_LIB_RFCNB_RFCNB_UTIL_H
34 #define SQUID_LIB_RFCNB_RFCNB_UTIL_H
35 
36 #include "rfcnb/std-includes.h"
37 
38 void RFCNB_CvtPad_Name(char *name1, char *name2);
39 
40 void RFCNB_AName_To_NBName(char *AName, char *NBName);
41 
42 void RFCNB_NBName_To_AName(char *NBName, char *AName);
43 
44 void RFCNB_Print_Hex(FILE * fd, struct RFCNB_Pkt *pkt, int Offset, int Len);
45 
46 void RFCNB_Print_Pkt(FILE * fd, char *dirn, struct RFCNB_Pkt *pkt, int len);
47 
48 int RFCNB_Name_To_IP(char *host, struct in_addr *Dest_IP);
49 
50 int RFCNB_Close(int fd);
51 
52 int RFCNB_IP_Connect(struct in_addr Dest_IP, int port);
53 
54 int RFCNB_Session_Req(struct RFCNB_Con *con,
55  char *Called_Name,
56  char *Calling_Name,
57  BOOL * redirect,
58  struct in_addr *Dest_IP,
59  int *port);
60 
61 typedef void RFCNB_Prot_Print_Routine(FILE * fd, int dir, struct RFCNB_Pkt *pkt, int header, int payload);
63 
64 #endif /* SQUID_LIB_RFCNB_RFCNB_UTIL_H */
65 
void RFCNB_Print_Hex(FILE *fd, struct RFCNB_Pkt *pkt, int Offset, int Len)
Definition: rfcnb-util.c:151
static int port
Definition: ldap_backend.cc:70
void RFCNB_CvtPad_Name(char *name1, char *name2)
Definition: rfcnb-util.c:71
void RFCNB_Print_Pkt(FILE *fd, char *dirn, struct RFCNB_Pkt *pkt, int len)
Definition: rfcnb-util.c:254
void RFCNB_NBName_To_AName(char *NBName, char *AName)
Definition: rfcnb-util.c:130
int RFCNB_IP_Connect(struct in_addr Dest_IP, int port)
Definition: rfcnb-util.c:384
void RFCNB_AName_To_NBName(char *AName, char *NBName)
Definition: rfcnb-util.c:109
int RFCNB_Name_To_IP(char *host, struct in_addr *Dest_IP)
Definition: rfcnb-util.c:336
void RFCNB_Prot_Print_Routine(FILE *fd, int dir, struct RFCNB_Pkt *pkt, int header, int payload)
Definition: rfcnb-util.h:61
int RFCNB_Session_Req(struct RFCNB_Con *con, char *Called_Name, char *Calling_Name, BOOL *redirect, struct in_addr *Dest_IP, int *port)
Definition: rfcnb-util.c:419
int RFCNB_Close(int fd)
Definition: rfcnb-util.c:371
RFCNB_Prot_Print_Routine * Prot_Print_Routine
Definition: session.c:52
#define BOOL
Definition: std-includes.h:38

 

Introduction

Documentation

Support

Miscellaneous