]> git.ipfire.org Git - thirdparty/squid.git/blame - lib/rfcnb/rfcnb-common.h
SourceFormat Enforcement
[thirdparty/squid.git] / lib / rfcnb / rfcnb-common.h
CommitLineData
462566c5 1/*
bde978a6 2 * Copyright (C) 1996-2015 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 */
8
7c16470c 9/* UNIX RFCNB (RFC1001/RFC1002) NetBIOS implementation
6ca34f6f
HN
10 *
11 * Version 1.0
12 * RFCNB Common Structures etc 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
AJ
32
33#ifndef _RFCNB_RFCNB_COMMON_H
34#define _RFCNB_RFCNB_COMMON_H
35
9864722f 36#if defined(__cplusplus)
7c16470c
AJ
37extern "C" {
38#endif
39
f53969cc 40/* A data structure we need */
7c16470c 41
f53969cc 42typedef struct RFCNB_Pkt {
7c16470c 43
f53969cc
SM
44 char *data; /* The data in this portion */
45 int len;
46 struct RFCNB_Pkt *next;
7c16470c 47
f53969cc 48} RFCNB_Pkt;
7c16470c 49
9864722f 50#if defined(__cplusplus)
7c16470c
AJ
51}
52#endif
9864722f 53#endif /* _RFCNB_RFCNB_COMMON_H */
f53969cc 54