aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/etherpeek.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-07-29 06:09:59 +0000
committerGuy Harris <guy@alum.mit.edu>2002-07-29 06:09:59 +0000
commit6e21561be8a3f9a29a438ea945b7be7b933fc159 (patch)
tree8e70c43d1f42de696be79b546042e67623be1c06 /wiretap/etherpeek.c
parent4298a1f07da62f4791fcb5664fa5ba43b29944a3 (diff)
From Joerg Mayer:
All files: - Replace types from sys/types.h by those from glib.h - Replace ntoh family of macros from netinet/in.h and winsock2.h by g_ntoh family from glib.h - Remove now unneeded includes of sys/types.h, netinet/in.h and winsock2.h wtap.h Move includes to the top svn path=/trunk/; revision=5909
Diffstat (limited to 'wiretap/etherpeek.c')
-rw-r--r--wiretap/etherpeek.c28
1 files changed, 12 insertions, 16 deletions
diff --git a/wiretap/etherpeek.c b/wiretap/etherpeek.c
index 5818ffce94..15cce124a3 100644
--- a/wiretap/etherpeek.c
+++ b/wiretap/etherpeek.c
@@ -2,7 +2,7 @@
* Routines for opening EtherPeek (and TokenPeek?) files
* Copyright (c) 2001, Daniel Thompson <d.thompson@gmx.net>
*
- * $Id: etherpeek.c,v 1.20 2002/06/07 07:27:34 guy Exp $
+ * $Id: etherpeek.c,v 1.21 2002/07/29 06:09:58 guy Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -31,10 +31,6 @@
#include "file_wrappers.h"
#include "buffer.h"
#include "etherpeek.h"
-#ifdef HAVE_NETINET_IN_H
-#include <netinet/in.h>
-#endif
-
/* CREDITS
*
* This file decoder could not have been writen without examining how
@@ -142,7 +138,7 @@ static const etherpeek_encap_lookup_t etherpeek_encap[] = {
static gboolean etherpeek_read_v7(wtap *wth, int *err, long *data_offset);
static gboolean etherpeek_seek_read_v7(wtap *wth, long seek_off,
- union wtap_pseudo_header *pseudo_header, u_char *pd, int length, int *err);
+ union wtap_pseudo_header *pseudo_header, guchar *pd, int length, int *err);
static gboolean etherpeek_read_v56(wtap *wth, int *err, long *data_offset);
static void etherpeek_close(wtap *wth);
@@ -195,9 +191,9 @@ int etherpeek_open(wtap *wth, int *err)
* we can get.
*/
ep_hdr.secondary.v567.mediaType =
- ntohl(ep_hdr.secondary.v567.mediaType);
+ g_ntohl(ep_hdr.secondary.v567.mediaType);
ep_hdr.secondary.v567.physMedium =
- ntohl(ep_hdr.secondary.v567.physMedium);
+ g_ntohl(ep_hdr.secondary.v567.physMedium);
switch (ep_hdr.secondary.v567.physMedium) {
@@ -265,19 +261,19 @@ int etherpeek_open(wtap *wth, int *err)
* uncompressed, but it might be compressed.
*/
ep_hdr.secondary.v567.filelength =
- ntohl(ep_hdr.secondary.v567.filelength);
+ g_ntohl(ep_hdr.secondary.v567.filelength);
ep_hdr.secondary.v567.numPackets =
- ntohl(ep_hdr.secondary.v567.numPackets);
+ g_ntohl(ep_hdr.secondary.v567.numPackets);
ep_hdr.secondary.v567.timeDate =
- ntohl(ep_hdr.secondary.v567.timeDate);
+ g_ntohl(ep_hdr.secondary.v567.timeDate);
ep_hdr.secondary.v567.timeStart =
- ntohl(ep_hdr.secondary.v567.timeStart);
+ g_ntohl(ep_hdr.secondary.v567.timeStart);
ep_hdr.secondary.v567.timeStop =
- ntohl(ep_hdr.secondary.v567.timeStop);
+ g_ntohl(ep_hdr.secondary.v567.timeStop);
ep_hdr.secondary.v567.appVers =
- ntohl(ep_hdr.secondary.v567.appVers);
+ g_ntohl(ep_hdr.secondary.v567.appVers);
ep_hdr.secondary.v567.linkSpeed =
- ntohl(ep_hdr.secondary.v567.linkSpeed);
+ g_ntohl(ep_hdr.secondary.v567.linkSpeed);
/* Get the reference time as a "struct timeval" */
reference_time.tv_sec =
@@ -442,7 +438,7 @@ static gboolean etherpeek_read_v7(wtap *wth, int *err, long *data_offset)
static gboolean
etherpeek_seek_read_v7(wtap *wth, long seek_off,
- union wtap_pseudo_header *pseudo_header, u_char *pd, int length, int *err)
+ union wtap_pseudo_header *pseudo_header, guchar *pd, int length, int *err)
{
airopeek_radio_hdr_t radio_hdr;