~ubuntu-branches/ubuntu/oneiric/openvpn/oneiric

« back to all changes in this revision

Viewing changes to tap-win32/error.h

  • Committer: Bazaar Package Importer
  • Author(s): Alberto Gonzalez Iniesta
  • Date: 2004-06-10 15:59:39 UTC
  • Revision ID: james.westby@ubuntu.com-20040610155939-dcmtiuvcoqnwek62
Tags: upstream-1.6.0
ImportĀ upstreamĀ versionĀ 1.6.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  TAP-Win32 -- A kernel driver to provide virtual tap device functionality
 
3
 *               on Windows.  Originally derived from the CIPE-Win32
 
4
 *               project by Damion K. Wilson, with extensive modifications by
 
5
 *               James Yonan.
 
6
 *
 
7
 *  All source code which derives from the CIPE-Win32 project is
 
8
 *  Copyright (C) Damion K. Wilson, 2003, and is released under the
 
9
 *  GPL version 2 (see below).
 
10
 *
 
11
 *  All other source code is Copyright (C) James Yonan, 2003-2004,
 
12
 *  and is released under the GPL version 2 (see below).
 
13
 *
 
14
 *  This program is free software; you can redistribute it and/or modify
 
15
 *  it under the terms of the GNU General Public License as published by
 
16
 *  the Free Software Foundation; either version 2 of the License, or
 
17
 *  (at your option) any later version.
 
18
 *
 
19
 *  This program is distributed in the hope that it will be useful,
 
20
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
21
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
22
 *  GNU General Public License for more details.
 
23
 *
 
24
 *  You should have received a copy of the GNU General Public License
 
25
 *  along with this program (see the file COPYING included with this
 
26
 *  distribution); if not, write to the Free Software Foundation, Inc.,
 
27
 *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
28
 */
 
29
 
 
30
//-----------------
 
31
// DEBUGGING OUTPUT
 
32
//-----------------
 
33
 
 
34
#define NOTE_ERROR(a) \
 
35
{ \
 
36
  a->m_LastErrorFilename = __FILE__; \
 
37
  a->m_LastErrorLineNumber = __LINE__; \
 
38
}
 
39
 
 
40
#if DBG
 
41
 
 
42
typedef struct {
 
43
  unsigned int in;
 
44
  unsigned int out;
 
45
  unsigned int capacity;
 
46
  char *text;
 
47
  BOOLEAN error;
 
48
  LONG use;
 
49
} DebugOutput;
 
50
 
 
51
VOID MyDebugPrint (const unsigned char* format, ...);
 
52
 
 
53
VOID MyAssert (const unsigned char *file, int line);
 
54
 
 
55
VOID DumpPacket (const char *prefix,
 
56
                 const unsigned char *data,
 
57
                 unsigned int len);
 
58
 
 
59
VOID DumpPacket2 (const char *prefix,
 
60
                  const ETH_HEADER *eth,
 
61
                  const unsigned char *data,
 
62
                  unsigned int len);
 
63
 
 
64
#define DEBUGP(fmt) { MyDebugPrint fmt; }
 
65
 
 
66
#define MYASSERT(exp) \
 
67
{ \
 
68
  if (!(exp)) \
 
69
    { \
 
70
      MyAssert(__FILE__, __LINE__); \
 
71
    } \
 
72
}
 
73
 
 
74
#define DUMP_PACKET(prefix, data, len) \
 
75
  DumpPacket (prefix, data, len)
 
76
 
 
77
#define DUMP_PACKET2(prefix, eth, data, len) \
 
78
  DumpPacket2 (prefix, eth, data, len)
 
79
 
 
80
#else 
 
81
 
 
82
#define DEBUGP(fmt)
 
83
#define MYASSERT(exp)
 
84
#define DUMP_PACKET(prefix, data, len)
 
85
#define DUMP_PACKET2(prefix, eth, data, len)
 
86
 
 
87
#endif