aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/json.c
diff options
context:
space:
mode:
Diffstat (limited to 'wiretap/json.c')
-rw-r--r--wiretap/json.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/wiretap/json.c b/wiretap/json.c
index a61ef121a3..8f5064de47 100644
--- a/wiretap/json.c
+++ b/wiretap/json.c
@@ -15,7 +15,7 @@
#include "json.h"
#include <wsutil/wsjsmn.h>
-static gboolean json_read_file(wtap *wth, FILE_T fh, struct wtap_pkthdr *phdr,
+static gboolean json_read_file(wtap *wth, FILE_T fh, wtap_rec *rec,
Buffer *buf, int *err, gchar **err_info)
{
gint64 file_size;
@@ -36,19 +36,19 @@ static gboolean json_read_file(wtap *wth, FILE_T fh, struct wtap_pkthdr *phdr,
}
packet_size = (int)file_size;
- phdr->rec_type = REC_TYPE_PACKET;
- phdr->presence_flags = 0; /* yes, we have no bananas^Wtime stamp */
+ rec->rec_type = REC_TYPE_PACKET;
+ rec->presence_flags = 0; /* yes, we have no bananas^Wtime stamp */
- phdr->caplen = packet_size;
- phdr->len = packet_size;
+ rec->rec_header.packet_header.caplen = packet_size;
+ rec->rec_header.packet_header.len = packet_size;
- phdr->ts.secs = 0;
- phdr->ts.nsecs = 0;
+ rec->ts.secs = 0;
+ rec->ts.nsecs = 0;
return wtap_read_packet_bytes(fh, buf, packet_size, err, err_info);
}
-static gboolean json_seek_read(wtap *wth, gint64 seek_off, struct wtap_pkthdr *phdr, Buffer *buf,
+static gboolean json_seek_read(wtap *wth, gint64 seek_off, wtap_rec *rec, Buffer *buf,
int *err, gchar **err_info)
{
/* there is only one packet */
@@ -60,7 +60,7 @@ static gboolean json_seek_read(wtap *wth, gint64 seek_off, struct wtap_pkthdr *p
if (file_seek(wth->random_fh, seek_off, SEEK_SET, err) == -1)
return FALSE;
- return json_read_file(wth, wth->random_fh, phdr, buf, err, err_info);
+ return json_read_file(wth, wth->random_fh, rec, buf, err, err_info);
}
static gboolean json_read(wtap *wth, int *err, gchar **err_info, gint64 *data_offset)
@@ -77,7 +77,7 @@ static gboolean json_read(wtap *wth, int *err, gchar **err_info, gint64 *data_of
*data_offset = offset;
- return json_read_file(wth, wth->fh, &wth->phdr, wth->frame_buffer, err, err_info);
+ return json_read_file(wth, wth->fh, &wth->rec, wth->rec_data, err, err_info);
}
wtap_open_return_val json_open(wtap *wth, int *err, gchar **err_info)