aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet.h
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2007-01-10 07:47:00 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2007-01-10 07:47:00 +0000
commitf8422ab7db0da2b503c0af24d601c65ee9b825bd (patch)
treee550ae0b45a1ca1d859b726bc2fe73294f353d9b /epan/packet.h
parenta68f0224c32995115f35a5dccf1ff2d3da9b2162 (diff)
Extending true_false_string support
- Separate tfs.[ch] - Add larger sample collection - Properly export DATA svn path=/trunk/; revision=20373
Diffstat (limited to 'epan/packet.h')
-rw-r--r--epan/packet.h15
1 files changed, 2 insertions, 13 deletions
diff --git a/epan/packet.h b/epan/packet.h
index 9a8b15871c..8512fa4cb5 100644
--- a/epan/packet.h
+++ b/epan/packet.h
@@ -19,7 +19,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __PACKET_H__
@@ -44,6 +44,7 @@
#include "packet_info.h"
#include "column-utils.h"
#include "epan.h"
+#include "tfs.h"
#define hi_nibble(b) (((b) & 0xf0) >> 4)
#define lo_nibble(b) ((b) & 0x0f)
@@ -84,18 +85,6 @@ typedef enum {
CHAR_EBCDIC = 1 /* EBCDIC */
} char_enc;
-/* Struct for boolean enumerations */
-typedef struct true_false_string {
- const char *true_string;
- const char *false_string;
-} true_false_string;
-
-/**
-* A default set of true/false strings that dissectors can use for
-* FT_BOOLEAN header fields.
-**/
-extern const true_false_string flags_set_truth;
-
extern void packet_init(void);
extern void packet_cleanup(void);