diff options
author | Guy Harris <guy@alum.mit.edu> | 2018-12-26 18:26:24 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2018-12-27 04:34:29 +0000 |
commit | 7eb3e47fa49806ea2cf59f0fa009240fae049a2b (patch) | |
tree | d668ff9ceae57934fe33582457fc5169f6e764ba /epan/dissectors/packet-spdy.c | |
parent | c3a7986b86f5355e6bd1791f70b78c91bcdac247 (diff) | |
download | wireshark-7eb3e47fa49806ea2cf59f0fa009240fae049a2b.tar.gz wireshark-7eb3e47fa49806ea2cf59f0fa009240fae049a2b.tar.bz2 wireshark-7eb3e47fa49806ea2cf59f0fa009240fae049a2b.zip |
Try to squeeze some bytes out of the frame_data structure.
Make the time stamp precision a 4-bit bitfield, so, when combined with
the other bitfields, we have 32 bits. That means we put the flags at
the same structure level as the time stamp precision, so they can be
combined; that gets rid of an extra "flags." for references to the flags.
Put the two pointers next to each other, and after a multiple of 8 bytes
worth of other fields, so that there's no padding before or between them.
It's still not down to 64 bytes, which is the next lower power of 2, so
there's more work to do.
Change-Id: I6f3e9d9f6f48137bbee8f100c152d2c42adb8fbe
Reviewed-on: https://code.wireshark.org/review/31213
Petri-Dish: Guy Harris <guy@alum.mit.edu>
Tested-by: Petri Dish Buildbot
Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors/packet-spdy.c')
-rw-r--r-- | epan/dissectors/packet-spdy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-spdy.c b/epan/dissectors/packet-spdy.c index 99ddc5b021..99dbfecc7d 100644 --- a/epan/dissectors/packet-spdy.c +++ b/epan/dissectors/packet-spdy.c @@ -747,7 +747,7 @@ static int dissect_spdy_data_payload(tvbuff_t *tvb, next_tvb = tvb_new_subset_length(tvb, offset, frame->length); is_single_chunk = num_data_frames == 0 && (frame->flags & SPDY_FLAG_FIN) != 0; - if (!pinfo->fd->flags.visited) { + if (!pinfo->fd->visited) { if (!is_single_chunk) { if (spdy_assemble_entity_bodies) { copied_data = (guint8 *)tvb_memdup(wmem_file_scope(),next_tvb, 0, frame->length); @@ -1322,7 +1322,7 @@ static int dissect_spdy_header_payload( * If we expect data on this stream, we need to remember the content * type and content encoding. */ - if (content_type != NULL && !pinfo->fd->flags.visited) { + if (content_type != NULL && !pinfo->fd->visited) { gchar *content_type_params = spdy_parse_content_type(content_type); spdy_save_stream_info(conv_data, stream_id, (hdr_status == NULL) ? HTTP_REQUEST : HTTP_RESPONSE, |