aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ocsp.c
AgeCommit message (Collapse)AuthorFilesLines
2007-11-04Update do use the -X and -T asn2wrs flags.Anders Broman1-265/+127
svn path=/trunk/; revision=23359
2007-08-25get users of oid_resolv to use the new oids, rollout packet-snmp.cLuis Ontanon1-1/+1
svn path=/trunk/; revision=22651
2007-05-22Prepare for the use of the new -X parameter for BER encoded protocols.Anders Broman1-59/+59
svn path=/trunk/; revision=21889
2007-05-15actx in the rest of dissect_ber..()lAnders Broman1-13/+13
svn path=/trunk/; revision=21773
2007-05-13Second step in introducing asn context to BER dissectors just like in PER.Anders Broman1-171/+186
svn path=/trunk/; revision=21753
2007-05-06Start introducing actx to ber functions.Anders Broman1-45/+45
svn path=/trunk/; revision=21705
2007-05-03EXTERNAL type is handled in asn2wrs nowTomas Kukosa1-1/+1
private implementations were renamed EXTERNAL -> EXTERNALt svn path=/trunk/; revision=21662
2007-03-21change the signature that asn2wrs generates for functions to marm all ↵Ronnie Sahlberg1-84/+84
parameters as _U_ to reduce the number of compiler warnings. update some template and cnf files to use _U_ as well svn path=/trunk/; revision=21088
2006-08-16ASN.1 dissectors regenerated with new asn2wrs to get updated field blurbTomas Kukosa1-50/+50
svn path=/trunk/; revision=18921
2006-05-24- remove some #.MODULE_IMPORT from .cng filesTomas Kukosa1-4/+4
- regenerate BER dissectors so as to change rest of Ethereal->Wireshark and asn2eth -> asn2wrs svn path=/trunk/; revision=18217
2006-05-21change a whole bunch of ethereal into wiresharkRonnie Sahlberg1-3/+3
svn path=/trunk/; revision=18196
2005-12-08Regenerate with the latest asn2eth, to get FT_OID used, and to add #line.Guy Harris1-15/+18
svn path=/trunk/; revision=16736
2005-11-14 - dissect_ber_object_identifier() returns value as tvbTomas Kukosa1-7/+4
- new dissect_ber_object_identifier_str() function - BER dissectors adapted and regenerated svn path=/trunk/; revision=16501
2005-09-02Regenerate dissectors with the current asn2eth.Guy Harris1-21/+40
svn path=/trunk/; revision=15664
2005-07-21change the symbol dissect_ber_CHOICE back into dissect_ber_choiceRonnie Sahlberg1-14/+18
svn path=/trunk/; revision=14980
2005-07-09Fix up a bunch of arguments to "dissect_ber_identifier()" to match itsGuy Harris1-12/+16
current signature ("class" is a "gint8 *", not a "guint8 *", and "tag" is a "gint32 *", not a "guint32 *"). Re-generate the dissectors from the ASN.1 and the .cnf files in the cases where the arguments were fixed in a .cnf file. Give some dissectors the right svn:keywords and svn:eol-style settings. svn path=/trunk/; revision=14885
2005-06-26make dissect_ber_choice take a guint* that will return theRonnie Sahlberg1-16/+16
index of the branch taken or -1 to make prettifications easier to implement. change the signature of dissect_ber_choice and rename it to dissect_ber_CHOICE to catch all occurences of the use of this function update asn2eth to use the new name/signature update all occurences of this function to the new name and new signature. svn path=/trunk/; revision=14758
2005-04-22Define a maximum OID string length, and use it in a lot of places. Fixes aGerald Combs1-1/+1
buffer overflow found while fuzz testing. svn path=/trunk/; revision=14169
2005-02-23update asn2eth and all generated dissectors to new dissect_ber_boolean that ↵Ronnie Sahlberg1-31/+31
takes a implicit_tag parameter svn path=/trunk/; revision=13479
2004-12-14Fix the following gcc-4 error:Jörg Mayer1-2/+2
============== packet-ocsp.c:191: error: static declaration of 'Version_vals' follows non-static declaration packet-x509af.h:39: error: previous declaration of 'Version_vals' was here packet-ocsp.c: In function 'dissect_ocsp_T_response': packet-ocsp.c:398: warning: pointer targets in passing argument 5 of 'dissect_ber_identifier' differ in signedness packet-ocsp.c:398: warning: pointer targets in passing argument 7 of 'dissect_ber_identifier' differ in signedness make[4]: *** [packet-ocsp.lo] Error 1 ============== This fix is in the generated file only - please fix in the right source file too. svn path=/trunk/; revision=12751
2004-12-13update of the asn2eth compiler to use the types ber_[choice|sequence]_t ↵Ronnie Sahlberg1-20/+20
instead of ber_[choice|sequence] regenerated all dissectors fixed the choice/sequence struct to use unsigned entities for class and tag (to reduce some compiler warning and because it should be signed quantities) svn path=/trunk/; revision=12740
2004-12-12update the helper for BER GeneralizedTime to handle implicit tag and update ↵Ronnie Sahlberg1-6/+6
all dissectors using GeneralizedTime svn path=/trunk/; revision=12732
2004-12-12updates from tomas and andersRonnie Sahlberg1-7/+7
create some missing makefiles for autogenerated dissectors finish the transition to the new ber integer dissetor helper signature and regenerate all ber dissectors svn path=/trunk/; revision=12724
2004-11-29new protocol : RFC2560 Online Certificate Status ProtocolRonnie Sahlberg1-0/+1079
svn path=/trunk/; revision=12618