aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-websocket.c
AgeCommit message (Expand)AuthorFilesLines
2017-09-23WebSocket: remove useless pointer checks (CID 1418346)Pascal Quantin1-2/+2
2017-09-19WebSocket: check websocket_extensions pointer validityPascal Quantin1-1/+3
2017-09-19WebSocket: add permessage-deflate extension supportPascal Quantin1-19/+273
2017-01-10Rename tvb_new_subset() to tvb_new_subset_length_caplen().Guy Harris1-2/+2
2016-08-31Don't do any Decode As stuff for dissector tables not used with Decode As.Guy Harris1-2/+2
2016-03-27Add dissector table for negotiated WebSocket protocolGregor Jasny1-2/+11
2016-03-20Create call_data_dissector() to call data dissector.Michael Mann1-3/+1
2016-03-20Manually add protocol dependencies derived from find_dissector.Michael Mann1-3/+3
2016-03-17Associate dissector tables and heuristic subdissector lists with a protocol.Michael Mann1-2/+2
2016-01-24Add the packet number to the packet_info structure, and use it.Guy Harris1-1/+1
2015-12-09new_register_dissector -> register_dissector for dissector directory.Michael Mann1-1/+1
2015-11-04Don't allow multiple registrations of a protocol in dissector tables.Michael Mann1-1/+1
2015-06-01Websocket: Fix Dead Store (Dead assignement/Dead increment) warning found by ...Alexis La Goutte1-1/+1
2015-05-31websocket: restructure tree, always unmask payloadPeter Wu1-205/+124
2015-02-24websocket: avoid recursion, use tcp_dissect_pdusPeter Wu1-50/+52
2015-01-08use the http server port as index for the ws.port dissector tableMartin Kaiser1-5/+19
2014-12-30Websocket: use pinfo pool and not packet one for the unmasked data tvbPascal Quantin1-3/+3
2014-12-30clean up the part where dissect_websocket() is called recursivelyMartin Kaiser1-2/+5
2014-12-30use packet-scoped memory for the unmasked data tvbMartin Kaiser1-5/+2
2014-12-30skip the payload if it's emptyMartin Kaiser1-2/+4
2014-12-30no need for if(tree)Martin Kaiser1-5/+3
2014-12-21Cleanup use of #includes in non-generated epan/dissector/*.cBill Meier1-2/+0
2014-12-21Have a heur_dissector_list_t be an opaque handle.Guy Harris1-1/+1
2014-12-13Use ENC_BIG_ENDIAN when fetching FT_U?INT8 fields ...Bill Meier1-3/+3
2014-11-26Remove the use of pinfo->private_data from dissectors that just save it to re...Michael Mann1-3/+0
2014-07-18WebSocket: increase max unmask payload size to 256K and indicate that packet ...Pascal Quantin1-3/+6
2014-06-19Revert "Fixup: tvb_* -> tvb_captured"Michael Mann1-2/+2
2014-06-18Fixup: tvb_* -> tvb_capturedDario Lombardo1-2/+2
2014-05-21Change the signature of dissector_try_heuristic() to return hdtbl_entryAndersBroman1-1/+2
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
2014-02-12Add support of SIP subprotocol for WebSocketAlexis La Goutte1-0/+7
2013-12-12In one or more of the files:Bill Meier1-50/+50
2013-12-11- Make local functions static.Anders Broman1-1/+2
2013-10-29From didier gautheron: remove redundant or use faster col_xxx functionsBill Meier1-2/+2
2013-10-13whitespace fixes; mostly: remove trailing blanksBill Meier1-1/+1
2013-09-09expert_add_info_format_text -> expert_add_info_formatMichael Mann1-1/+1
2013-08-05Make some global variables staticJakub Zawadzki1-2/+2
2013-05-28Batch of filterable expert infos. This (mostly) completes the non-ASN.1 list...Michael Mann1-1/+10
2013-03-16Check for overflow in the websocket dissector payload.Evan Huus1-0/+7
2013-03-12Introduce a preference to select how Websocket text should be dissected.Anders Broman1-3/+57
2013-03-04Use explicit casts.Anders Broman1-1/+1
2013-02-17From Alyssa Milburn via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8341Evan Huus1-11/+11
2012-11-03Make it compil by adding a cast, not sure if payload_length = (int)tvb_get_nt...Anders Broman1-2/+4
2012-11-02Try to fix Windows XP/7 buildbotAlexis La Goutte1-1/+1
2012-11-02From vanviegen via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7934 W...Alexis La Goutte1-96/+146
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
2012-09-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki1-1/+1
2012-07-24(Trivial) remove unneeded #include.Bill Meier1-1/+0
2012-05-04Websocket masked tvb was never freed, set it as child of original tvb.Jakub Zawadzki1-1/+2
2012-04-20Add an arbitrary (64K) size limit for the unmasked TVBs that weGerald Combs1-22/+24