aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sip.c
AgeCommit message (Expand)AuthorFilesLines
2011-10-26Fix proto_tree_add_item() encoding args;Bill Meier1-8/+8
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-2/+2
2011-10-15Convert proto_tree_add_item() 'encoding' arg for field types FT_STRING, FT_ST...Bill Meier1-15/+15
2011-10-13From Horaci Macias:Anders Broman1-0/+8
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly referen...Bill Meier1-1/+1
2011-09-19Move stuff inside if(tree)Anders Broman1-51/+48
2011-07-18Fix gcc 4.6 "set but not used [-Wunused-but-set-variable]" warnings.Bill Meier1-5/+7
2011-05-20Add #include <stdlib.h> to files which reference fcns declared in stdlib.h;Bill Meier1-2/+3
2011-04-11Don't assign to a proto_item * if the value won't be used: Coverity 1036;Bill Meier1-377/+369
2011-04-08Use tvb_get_ephemeral_string()Anders Broman1-16/+13
2011-04-07Make it possible to have a sub dissector dissect the status line diagnostic s...Anders Broman1-3/+21
2011-04-06RFC5806 Diversion headerTomas Kukosa1-0/+8
2011-01-19Simply this:Stephen Fisher1-1/+1
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-3/+3
2010-11-29Remove a no-longer-used variable.Jeff Morriss1-3/+2
2010-11-29Change SIP TCP port preference to a range preference.Anders Broman1-9/+29
2010-11-22Remove faulty return, probably forgotten during test.Anders Broman1-1/+0
2010-11-05Use value_string_ext fcns to access certain value_string arrays;Bill Meier1-1/+1
2010-11-04Prevent false related packet information, which may be missing or ignored.Jaap Keuter1-1/+1
2010-11-03(Trivial): Fix up a comment.Bill Meier1-4/+4
2010-11-03Update SIP headers.Anders Broman1-275/+310
2010-10-27Try to decode the unknown multipart subtype anyway.Jaap Keuter1-0/+8
2010-09-24(Refining the regexp...) Replace blurbs that match the name (case insensitive...Jeff Morriss1-1/+1
2010-08-25Fix wrong length of CSeq Method parameter Tomas Kukosa1-2/+2
2010-06-30Use the right array bounds.Gerald Combs1-6/+6
2010-05-28From Karl Heinz Wolf via bug 3571 (with minor changes):Gerald Combs1-1/+13
2010-05-25Only try header reassembly for TCP.Anders Broman1-1/+1
2010-05-24Fix a typo.Anders Broman1-1/+1
2010-05-05- Remove check_col()Anders Broman1-19/+18
2010-05-04Un-C++-ify a comment.Gerald Combs1-12/+12
2010-05-04Remove unused variables.Anders Broman1-4/+0
2010-05-04Refactor the code to parse SIP contact parameters.Anders Broman1-90/+84
2010-04-29Forgot a //Anders Broman1-1/+0
2010-04-29Simplify dissect_sip_authorization_item().Anders Broman1-46/+14
2010-04-29Do the header matching on lower case.Anders Broman1-20/+15
2010-04-29autentification info gives malformed packet if no space before "="Anders Broman1-3/+28
2010-04-28Use proto_add_item() and clean up the code a bit.Anders Broman1-78/+57
2010-04-14SIP headers are case-insensitive, fix case sensitivity introduced probably by...Tomas Kukosa1-2/+8
2010-04-03Remove unneeded #include <stdio.h>Bill Meier1-1/+0
2010-03-27- Make dfilter_sip_request_line() take offset as an argument to get the right...Anders Broman1-19/+14
2010-03-15My previous checkin reverted some changes, try to fix that.Anders Broman1-412/+70
2010-03-15Initialize a variable that otherwise might not beJeff Morriss1-1/+2
2010-03-15Declare sip_uri_offset_init() as returning void and remove a couple unused va...Jeff Morriss1-8/+4
2010-03-15To fill stat_info->tap_to_addr it needs to be outside of if(tree).Anders Broman1-83/+431
2010-03-14Use dissect_sip_uri() in dfilter_sip_request_line().Anders Broman1-77/+21
2010-03-13Use dissect_sip_name_addr_or_addr_spec() or dissect_sip_uri() as needed.Anders Broman1-322/+36
2010-03-11Initialize a variable.Gerald Combs1-1/+1
2010-03-11Remove unused variables etcAnders Broman1-3/+1
2010-03-11Start to clean up parsing of SIP URI.Anders Broman1-241/+377
2010-03-08Make tvb_pbrk_guint8() return the found needle.Anders Broman1-27/+25