diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-01-08 22:18:22 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-01-08 22:18:22 +0000 |
commit | 3f756801910b8b34c5e3da2a6ba541ab742a1af5 (patch) | |
tree | 7c3b6d5083fed1466e60217d40d4013dad41dd34 /wiretap/wtap.c | |
parent | 8d514ce83c1f81e21bbc9eae12d75b830bfce477 (diff) | |
download | wireshark-3f756801910b8b34c5e3da2a6ba541ab742a1af5.tar.gz wireshark-3f756801910b8b34c5e3da2a6ba541ab742a1af5.tar.bz2 wireshark-3f756801910b8b34c5e3da2a6ba541ab742a1af5.zip |
Code to handle Frame Relay Sniffer captures, from Jeff Foster.
Code to register the Frame Relay dissector to handle Frame Relay
captures, from Paul Ionescu.
svn path=/trunk/; revision=2845
Diffstat (limited to 'wiretap/wtap.c')
-rw-r--r-- | wiretap/wtap.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/wiretap/wtap.c b/wiretap/wtap.c index 89ad680747..8ea3ed0916 100644 --- a/wiretap/wtap.c +++ b/wiretap/wtap.c @@ -1,6 +1,6 @@ /* wtap.c * - * $Id: wtap.c,v 1.50 2000/12/23 08:06:16 guy Exp $ + * $Id: wtap.c,v 1.51 2001/01/08 22:18:22 guy Exp $ * * Wiretap Library * Copyright (c) 1998 by Gilbert Ramirez <gram@xiexie.org> @@ -124,6 +124,9 @@ const static struct encap_type_info { /* WTAP_ENCAP_SLL */ { "Linux cooked-mode capture", "linux-sll" }, + + /* WTAP_ENCAP_FRELAY */ + { "Frame Relay", "frelay" }, }; /* Name that should be somewhat descriptive. */ |