]> git.ipfire.org Git - thirdparty/squid.git/blame - lib/rfcnb/rfcnb-util.h
Source Format Enforcement (#532)
[thirdparty/squid.git] / lib / rfcnb / rfcnb-util.h
CommitLineData
462566c5 1/*
77b1029d 2 * Copyright (C) 1996-2020 The Squid Software Foundation and contributors
462566c5
AJ
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 */
9864722f 8
7c16470c 9/* UNIX RFCNB (RFC1001/RFC1002) NetBIOS implementation
6ca34f6f
HN
10 *
11 * Version 1.0
12 * RFCNB Utility Defines
13 *
14 * Copyright (C) Richard Sharpe 1996
6ca34f6f 15 */
7c16470c
AJ
16
17/*
6ca34f6f
HN
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 */
7c16470c 32
462566c5
AJ
33#ifndef _RFCNB_RFCNB_UTIL_H
34#define _RFCNB_RFCNB_UTIL_H
35
9864722f
AJ
36#include "rfcnb/std-includes.h"
37
7c16470c
AJ
38void RFCNB_CvtPad_Name(char *name1, char *name2);
39
40void RFCNB_AName_To_NBName(char *AName, char *NBName);
41
42void RFCNB_NBName_To_AName(char *NBName, char *AName);
43
6ca34f6f 44void RFCNB_Print_Hex(FILE * fd, struct RFCNB_Pkt *pkt, int Offset, int Len);
7c16470c 45
6ca34f6f 46void RFCNB_Print_Pkt(FILE * fd, char *dirn, struct RFCNB_Pkt *pkt, int len);
7c16470c
AJ
47
48int RFCNB_Name_To_IP(char *host, struct in_addr *Dest_IP);
49
bcc17f9c 50int RFCNB_Close(int fd);
7c16470c
AJ
51
52int RFCNB_IP_Connect(struct in_addr Dest_IP, int port);
53
54int RFCNB_Session_Req(struct RFCNB_Con *con,
55 char *Called_Name,
56 char *Calling_Name,
6ca34f6f 57 BOOL * redirect,
7c16470c 58 struct in_addr *Dest_IP,
6ca34f6f 59 int *port);
231fda33
FC
60
61typedef void RFCNB_Prot_Print_Routine(FILE * fd, int dir, struct RFCNB_Pkt *pkt, int header, int payload);
62extern RFCNB_Prot_Print_Routine *Prot_Print_Routine;
9864722f
AJ
63
64#endif /* _RFCNB_RFCNB_UTIL_H */
f53969cc 65