aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/Makefile.nmake
AgeCommit message (Collapse)AuthorFilesLines
2011-11-08Add SBc Application Part (SBc-AP) to build.etxrab1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39758 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-23From Pascal Quantin.etxrab1-0/+1
The attached patch adds the LPPa (LTE Positioning Protocol A) dissector as specified in 3GPP 36.455 release 9.4.1. (Part 2) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6478 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39516 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-16From Pascal Quantin.etxrab1-0/+1
LTE Positioning Protocol dissector https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6460 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39436 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-15Windows: Fix and re-enable asn1\t124 build;wmeier1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39432 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-11Build the LCS-AP dissector.etxrab1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39365 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-10Make it possible to build custom ASN1 based dissectors on Windows.etxrab1-2/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39340 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-10Fix ASN.1 dissector generation on Windows.morriss1-8/+8
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39337 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-06Add missing (presumably) entries for credssp,idmp,t124 & x721.wmeier1-4/+8
However: t124 & x721 fail to build on Windows so comment them out. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39293 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-20Renamed x411 to p1, x420 to p22 and s4406 to p772 to be consistentstig1-3/+3
on the naming policy for X.400 protocols. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36013 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-02Integrate and build the tetra dissector.etxrab1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35766 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-02Add gsmcdr to the makefiles.etxrab1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35758 f5534014-38df-0310-8fa8-9805f1628bb7
2010-06-01From Michael Bernhard via bug 3398 with minor fixups:gerald1-0/+1
I've created a ASN.1 dissector for the IEC 61850 Sampled Values protocol. It dissects ethernet frames of the IEC 61850-9-2LE specification form the UCA International User Group. There is also a new TAP for tshark (-R sv) which extracts the important information of the frame and allows to create plots (with external tools) of the sampled values. I've developed under Linux (Ubuntu 8.10) but everything should be in place for successful compilation under Windows. It would be great if this dissector could be included in wireshark. I'm looking forward for your comments. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33039 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-18kerberos is currently not actually being used.wmeier1-81/+84
Use '_FORCE_' (rather than '::'). Whitespace changes. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32503 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-16Simplify the Makefile ....wmeier1-415/+22
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32491 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-15Enhance Windows ASN1 Makefiles:wmeier1-364/+123
1. Implement a 'compare_files' target which can be used when generating an individual ASN1 dissector. This generates the dissector and then compares the generated .[hc] files with apn\dissectors (rather than copying the files to epan\dissectors). 2. Rework asn1\Makefile.nmake to provide additional targets for use when building all the ASN1 dissectors. - compare_files - generate_dissectors [generate but don't copy] git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32484 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-14Added PKIXAttributeCertificate (RFC3281).stig1-0/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32460 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-06Fix bug: HI2 --> HI2Operationswmeier1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32403 f5534014-38df-0310-8fa8-9805f1628bb7
2010-02-28Added svn:ignore targets.stig1-0/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32055 f5534014-38df-0310-8fa8-9805f1628bb7
2010-02-27Constify.guy1-9/+19
Don't have variables that point to string constants, just make the string constants be static const arrays. strlen(array of unspecified size initialized with a string) == sizeof array - 1; the latter can be computed at compile time. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32020 f5534014-38df-0310-8fa8-9805f1628bb7
2010-02-24From Neil Piercy:etxrab1-0/+18
Add 3GPP Home Node B Iuh protocol support (HNBAP & RUA) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4531 - Added IE extension for HNBAP - Removed unused .h files git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31989 f5534014-38df-0310-8fa8-9805f1628bb7
2009-12-04With revision 27279 the make part of revision 26467 has to be reverted too.jake1-8/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31175 f5534014-38df-0310-8fa8-9805f1628bb7
2009-10-10ns-cert-ext -> ns_cert_exts to make directory name consistent with filenameskrj1-4/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30478 f5534014-38df-0310-8fa8-9805f1628bb7
2009-10-10Sort subdirectories alphabeticallykrj1-46/+46
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30477 f5534014-38df-0310-8fa8-9805f1628bb7
2009-10-10Update makefiles to reflect new nameskrj1-16/+16
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30474 f5534014-38df-0310-8fa8-9805f1628bb7
2009-10-10ansi-tcap -> ansi_tcap to make directory name consistent with filenameskrj1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30469 f5534014-38df-0310-8fa8-9805f1628bb7
2009-02-09Add dissection of Charging ASE in ISUP APM messages.etxrab1-0/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27405 f5534014-38df-0310-8fa8-9805f1628bb7
2008-12-15From Vincent Helfre:etxrab1-0/+9
LTE RRC git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27011 f5534014-38df-0310-8fa8-9805f1628bb7
2008-10-15Now Kerberos compiles, a lot of work remains to get it into shape.etxrab1-1/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26467 f5534014-38df-0310-8fa8-9805f1628bb7
2008-10-14gosse updates.etxrab1-0/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26454 f5534014-38df-0310-8fa8-9805f1628bb7
2008-10-14Added goose to makefiles.stig1-0/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26448 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-03Include the "UTRAN Iupc interface Positioning Calculation Application Part ↵etxrab1-0/+9
(PCAP)" dissector. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24534 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-03Add x2ap and s1ap to asn1 build scriptsetxrab1-1/+19
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24004 f5534014-38df-0310-8fa8-9805f1628bb7
2007-11-19Added p7 to build environment.stig1-0/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23493 f5534014-38df-0310-8fa8-9805f1628bb7
2007-11-02new H.282 (RDC) and H.283 (LCT) dissectorskukosa1-0/+18
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23339 f5534014-38df-0310-8fa8-9805f1628bb7
2007-10-29add a asn2wrs generated T.125 MCP dissectorsahlberg1-0/+9
This dissects the initial Connect-Initial and Connect-confirm pdus of setting up t.125 The dissector needs to be enhanced to also decode the data payload so that it can decode any furhter packets on the connection after these two initial handshake packets git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23307 f5534014-38df-0310-8fa8-9805f1628bb7
2007-10-26H.501 Mobility protocol implementedkukosa1-0/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23275 f5534014-38df-0310-8fa8-9805f1628bb7
2007-10-18H.460 new dissector implemented (H.460.2-H.460.22)kukosa1-0/+9
H.225 - change RysMessage_vals to h225_Rasmessage_vals - use #.PDU directive for H323-UserInformation and RasMessage instead of implementing it by hands - register RasMessage_PDU as "h225.ras" dissector for calling it from H.460 asn2wrs make PDUs exportable git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23226 f5534014-38df-0310-8fa8-9805f1628bb7
2007-10-17new H.323 dissectorkukosa1-0/+9
- Generic Extensible Framework helper - Annex M1 (QSIG over H.323) - Annex M4 - Annex R H.225/H.245 support for Generic Extensible Framework (GEF) H.235 register MIKEY into new H.225/H.245 GEF tables regenerate H.225,H.245,H.235,H.450,H.450-ROS,T.35 from new makefiles git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23216 f5534014-38df-0310-8fa8-9805f1628bb7
2007-10-15- add missing h450-ros and q932-ros clean rules to asn1/Makefile.nmakekukosa1-0/+6
- solve h225<->h235 cyclic dependency with usage of -E option and #.IMPORT directive git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23189 f5534014-38df-0310-8fa8-9805f1628bb7
2007-10-10- Change Makefiles to include preincjmayer1-11/+24
- Add missing new directories to asn1/Makefile.nmake git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23141 f5534014-38df-0310-8fa8-9805f1628bb7
2007-10-09There isn't an "mpeg" directory, there are "mpeg-audio" and "mpeg-pes"guy1-4/+13
directories. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23122 f5534014-38df-0310-8fa8-9805f1628bb7
2007-09-25- Rework the Makefile structure to generate external -cnf filesjmayer1-0/+20
a protocol depends on. - Make sure we need to add asn files to only 1 Makefile instead of 3 (Makefile, Makefile.nmake, ../Makefile.am) - Change the Makefiles of the camel protocol to use the new structure. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22950 f5534014-38df-0310-8fa8-9805f1628bb7
2007-09-17SABP protocol implemented (not tested as traces are not available)kukosa1-0/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22884 f5534014-38df-0310-8fa8-9805f1628bb7
2007-06-25Fix Windows builds and dist after revision 22179 removed the FTBP dissectorsfisher1-9/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22182 f5534014-38df-0310-8fa8-9805f1628bb7
2007-06-22Remove gsm_ss and MAP_Dialogue from Windows makefilesfisher1-18/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22168 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-25get rid of few warningskukosa1-8/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21933 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-25UMTS RRC updated to 3GPP TS 25.331 V7.4.0 (2007-03) and moved to one directorykukosa1-29/+11
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21931 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-22Prepare for the use of the new -X parameter for BER encoded protocols.etxrab1-2/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21889 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-15actx in the rest of dissect_ber..()letxrab1-0/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21773 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-06Ad missing pkcs12.etxrab1-0/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21704 f5534014-38df-0310-8fa8-9805f1628bb7