Add dissector for Generic Network Virtualization Encapsulation (Geneve).
[metze/wireshark/wip.git] / text2pcap-scanner.l
1 /* -*-mode: flex-*- */
2
3 /*
4  * We don't use input, so don't generate code for it.
5  */
6 %option noinput
7
8 /*
9  * We don't use unput, so don't generate code for it.
10  */
11 %option nounput
12
13 %{
14
15 /********************************************************************************
16  *
17  * text2pcap-scanner.l
18  *
19  * Utility to convert an ASCII hexdump into a libpcap-format capture file
20  *
21  * (c) Copyright 2001 Ashok Narayanan <ashokn@cisco.com>
22  *
23  * Wireshark - Network traffic analyzer
24  * By Gerald Combs <gerald@wireshark.org>
25  * Copyright 1998 Gerald Combs
26  *
27  * This program is free software; you can redistribute it and/or
28  * modify it under the terms of the GNU General Public License
29  * as published by the Free Software Foundation; either version 2
30  * of the License, or (at your option) any later version.
31  *
32  * This program is distributed in the hope that it will be useful,
33  * but WITHOUT ANY WARRANTY; without even the implied warranty of
34  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
35  * GNU General Public License for more details.
36  *
37  * You should have received a copy of the GNU General Public License
38  * along with this program; if not, write to the Free Software
39  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
40  *
41  *******************************************************************************/
42
43 #include <stdio.h>
44 #include <stdlib.h>
45
46 #include "text2pcap.h"
47
48 /*
49  * Flex (v 2.5.35) uses this symbol to "exclude" unistd.h
50  */
51 #ifdef _WIN32
52 #define YY_NO_UNISTD_H
53 #endif
54
55 #ifdef _WIN32
56 /* disable Windows VC compiler warning "signed/unsigned mismatch" associated  */
57 /* with YY_INPUT code generated by flex versions such as 2.5.35.              */
58 #pragma warning (disable:4018)
59 #endif
60
61 %}
62
63 hexdigit [0-9A-Fa-f]
64 directive #TEXT2PCAP.*
65 comment #[^W].*
66 byte [0-9A-Fa-f][0-9A-Fa-f][ \t]
67 byte_eol [0-9A-Fa-f][0-9A-Fa-f]\r?\n
68 offset [0-9A-Fa-f]+[: \t]
69 offset_eol [0-9A-Fa-f]+\r?\n
70 text [^ \n\t]+
71 mailfwd >
72 eol \r?\n\r?
73
74 %%
75
76 {byte}            { parse_token(T_BYTE, yytext); }
77 {byte_eol}        { parse_token(T_BYTE, yytext); parse_token(T_EOL, NULL); }
78 {offset}          { parse_token(T_OFFSET, yytext); }
79 {offset_eol}      { parse_token(T_OFFSET, yytext); parse_token(T_EOL, NULL); }
80 {mailfwd}{offset} { parse_token(T_OFFSET, yytext+1); }
81 {eol}             { parse_token(T_EOL, NULL); }
82 [ \t]             ; /* ignore whitespace */
83 {directive}       { parse_token(T_DIRECTIVE, yytext); }
84 {comment}         ; /* ignore comments */
85 {text}            { parse_token(T_TEXT, yytext); }
86
87 %%
88
89 int yywrap(void)
90 {
91     return 1;
92 }