language stringlengths 0 24 | filename stringlengths 9 214 | code stringlengths 99 9.93M |
|---|---|---|
Configuration | wireshark/epan/dissectors/asn1/mpeg-audio/mpeg-audio.cnf | # mpeg-audio.cnf
# mpeg-audio conformation file
#.TYPE_ATTR
ID3v1/tag TYPE=FT_STRING
ID3v1/title TYPE=FT_STRING
ID3v1/artist TYPE=FT_STRING
ID3v1/album TYPE=FT_STRING
ID3v1/year TYPE=FT_STRING
ID3v1/comment TYPE=FT_STRING
#.END |
C | wireshark/epan/dissectors/asn1/mpeg-audio/packet-mpeg-audio-template.c | /* MPEG audio packet decoder.
* Written by Shaun Jackman <sjackman@gmail.com>.
* Copyright 2007 Shaun Jackman
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <epan/packet.h>
#include <epan/asn1.h>
... |
Text | wireshark/epan/dissectors/asn1/mpeg-pes/CMakeLists.txt | # CMakeLists.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
set( PROTOCOL_NAME mpeg-pes )
set( PROTO_OPT )
set( EXT_ASN_FILE_LIST
)
set( ASN_FILE_LIST
${PROTOCOL_NAME}.asn
)
set( EXTRA_DIST
${ASN_... |
ASN.1 | wireshark/epan/dissectors/asn1/mpeg-pes/mpeg-pes.asn | -- ASN description of MPEG Packetized Elementary Stream (PES)
-- Written by Shaun Jackman <sjackman@gmail.com>
-- Copyright 2007 Shaun Jackman
--
-- This program is free software; you can redistribute it and/or
-- modify it under the terms of the GNU General Public License.
MPEG DEFINITIONS ::= BEGIN
PES ::= SEQUENCE... |
Configuration | wireshark/epan/dissectors/asn1/mpeg-pes/mpeg-pes.cnf | # mpeg-pes.cnf
# mpeg-pes conformation file
#.FIELD_RENAME
Stream/must-be-zero stream_must-be-zero
#.FIELD_ATTR
Stream/must-be-zero ABBREV=stream.must-be-zero
#.TYPE_ATTR
PES/stream TYPE=FT_UINT8 DISPLAY=BASE_HEX
Pack/program-mux-rate TYPE=FT_UINT32 DISPLAY=BASE_DEC
Stream/length TYPE=FT_UINT16 DISPLAY=BASE_DEC
Stre... |
C | wireshark/epan/dissectors/asn1/mpeg-pes/packet-mpeg-pes-template.c | /* MPEG Packetized Elementary Stream (PES) packet decoder.
* Written by Shaun Jackman <sjackman@gmail.com>.
* Copyright 2007 Shaun Jackman
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "... |
Text | wireshark/epan/dissectors/asn1/mudurl/CMakeLists.txt | # CMakeLists.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
set( PROTOCOL_NAME mudurl )
set( PROTO_OPT )
set( EXT_ASN_FILE_LIST
)
set( ASN_FILE_LIST
MUDURL.asn
)
set( EXTRA_DIST
${ASN_FILE_LIST}
... |
ASN.1 | wireshark/epan/dissectors/asn1/mudurl/MUDURL.asn | -- Taken originally from draft-ietf-opsawg-mud.
--
-- Copyright (c) 2016 IETF Trust and Eliot Lear
-- All Rights Reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions
-- are met:
--
-- o Redistributions of source code... |
Configuration | wireshark/epan/dissectors/asn1/mudurl/mudurl.cnf | # mudurl.cnf
# mudurl conformation file
#.INCLUDE ../x509af/x509af-exp.cnf
#.MODULE_IMPORT
EXTENSION x509af
#.EXPORTS
#.REGISTER
MUDURLSyntax B "1.3.6.1.5.5.7.1.25" "id-pe-mud-url"
#.TYPE_RENAME
#.FIELD_RENAME
#.END |
C | wireshark/epan/dissectors/asn1/mudurl/packet-mudurl-template.c | /* packet-mudurl-template.c
* Routines for mudurl found in draft-ietf-opsawg-mud
* by Eliot Lear
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <epan/packet.h>
#inclu... |
Text | wireshark/epan/dissectors/asn1/nbap/CMakeLists.txt | # CMakeLists.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
set( PROTOCOL_NAME nbap )
set( PROTO_OPT )
set( EXT_ASN_FILE_LIST
)
set( ASN_FILE_LIST
NBAP-CommonDataTypes.asn
NBAP-Constants.asn
NBAP-... |
ASN.1 | wireshark/epan/dissectors/asn1/nbap/NBAP-CommonDataTypes.asn | -- Taken from 3GPP TS 25.433 V9.4.0 (2010-09)
-- http://www.3gpp.org/ftp/Specs/archive/25_series/25.433/
-- 9.3.5 Common Definitions
-- **************************************************************
--
-- Common definitions
--
-- **************************************************************
NBAP-CommonDataTypes {
i... |
ASN.1 | wireshark/epan/dissectors/asn1/nbap/NBAP-Constants.asn | -- NBAP-Constants.asn
--
-- Taken from 3GPP TS 25.433 V9.4.0 (2010-09)
-- http://www.3gpp.org/ftp/Specs/archive/25_series/25.433/
---
-- 9.3.6 Constant Definitions
--
-- **************************************************************
--
-- Constant definitions
--
-- *****************************************************... |
ASN.1 | wireshark/epan/dissectors/asn1/nbap/NBAP-Containers.asn | -- NBAP-Containers.asn
--
-- Taken from 3GPP TS 25.433 V9.4.0 (2010-09)
-- http://www.3gpp.org/ftp/Specs/archive/25_series/25.433/
--
-- 9.3.7 Container Definitions
--
-- **************************************************************
--
-- Container definitions
--
-- ***************************************************... |
ASN.1 | wireshark/epan/dissectors/asn1/nbap/NBAP-IEs.asn | -- NBAP-IEs.asn
--
-- Taken from 3GPP TS 25.433 V9.2.0 (2010-03)
-- http://www.3gpp.org/ftp/Specs/archive/25_series/25.433/
--
-- 9.3.4 Information Elements Definitions
--
--******************************************************************************
--
-- Information Element Definitions
--
--***********************... |
ASN.1 | wireshark/epan/dissectors/asn1/nbap/NBAP-PDU-Contents.asn | -- NBAP-PDU-Contents.asn
--
-- Taken from 3GPP TS 25.433 V9.2.0 (2010-03)
-- http://www.3gpp.org/ftp/Specs/archive/25_series/25.433
--
-- 9.3.3 PDU Definitions
--
-- **************************************************************
--
-- PDU definitions for NBAP.
--
-- ****************************************************... |
ASN.1 | wireshark/epan/dissectors/asn1/nbap/NBAP-PDU-Descriptions.asn | -- NBAP-PDU-Descriptions.asn
--
-- Taken from 3GPP TS 25.433 V9.2.0 (2010-03)
-- http://www.3gpp.org/ftp/Specs/archive/25_series/25.433/
--
-- 9.3.2 Elementary Procedure Definitions
--
-- **************************************************************
--
-- Elementary Procedure definitions
--
-- ***********************... |
Configuration | wireshark/epan/dissectors/asn1/nbap/nbap.cnf | # nbap.cnf
# nbap conformation file
# Copyright 2005 - 2012 Anders Broman
# Modified 2012 by Jacob Nordgren <jacob.nordgren@ericsson.com> and
# Rishie Sharma <rishie.sharma@ericsson.com>
# Modified 2017 by S. Shapira <sswsdev@gmail.com>
#.OPT
PER
ALIGNED
#.END
#.PDU
NBAP-PDU
#.MAKE_DEFINES
ProcedureCode
#.MAKE_ENUM... |
C | wireshark/epan/dissectors/asn1/nbap/packet-nbap-template.c | /* packet-nbap-template.c
* Routines for UMTS Node B Application Part(NBAP) packet dissection
* Copyright 2005, 2009 Anders Broman <anders.broman@ericsson.com>
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-... |
C/C++ | wireshark/epan/dissectors/asn1/nbap/packet-nbap-template.h | /* packet-nbap-template.h
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PACKET_NBAP_H
#define PACKET_NBAP_H
#include "packet-umts_rlc.h"
#include "packet-umts_mac.h"
/*
* Ericsson specif... |
Text | wireshark/epan/dissectors/asn1/ngap/CMakeLists.txt | # CMakeLists.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
set( PROTOCOL_NAME ngap )
set( PROTO_OPT )
set( EXPORT_FILES
${PROTOCOL_NAME}-exp.cnf
)
set( EXT_ASN_FILE_LIST
)
set( ASN_FILE_LIST
NGAP-... |
ASN.1 | wireshark/epan/dissectors/asn1/ngap/NGAP-CommonDataTypes.asn | -- 3GPP TS 38.413 V17.5.0 (2023-06)
-- 9.4.6 Common Definitions
-- **************************************************************
--
-- Common definitions
--
-- **************************************************************
NGAP-CommonDataTypes {
itu-t (0) identified-organization (4) etsi (0) mobileDomain (0)
ngran-Ac... |
ASN.1 | wireshark/epan/dissectors/asn1/ngap/NGAP-Constants.asn | -- 3GPP TS 38.413 V17.5.0 (2023-06)
-- 9.4.7 Constant Definitions
-- **************************************************************
--
-- Constant definitions
--
-- **************************************************************
NGAP-Constants {
itu-t (0) identified-organization (4) etsi (0) mobileDomain (0)
ngran-Acce... |
ASN.1 | wireshark/epan/dissectors/asn1/ngap/NGAP-Containers.asn | -- 3GPP TS 38.413 V17.5.0 (2023-06)
-- 9.4.8 Container Definitions
-- **************************************************************
--
-- Container definitions
--
-- **************************************************************
NGAP-Containers {
itu-t (0) identified-organization (4) etsi (0) mobileDomain (0)
ngran-A... |
ASN.1 | wireshark/epan/dissectors/asn1/ngap/NGAP-IEs.asn | -- 3GPP TS 38.413 V17.5.0 (2023-06)
-- 9.4.5 Information Element Definitions
-- **************************************************************
--
-- Information Element Definitions
--
-- **************************************************************
NGAP-IEs {
itu-t (0) identified-organization (4) etsi (0) mobileDomai... |
ASN.1 | wireshark/epan/dissectors/asn1/ngap/NGAP-PDU-Contents.asn | -- 3GPP TS 38.413 V17.5.0 (2023-06)
-- 9.4.4 PDU Definitions
-- **************************************************************
--
-- PDU definitions for NGAP.
--
-- **************************************************************
NGAP-PDU-Contents {
itu-t (0) identified-organization (4) etsi (0) mobileDomain (0)
ngran-A... |
ASN.1 | wireshark/epan/dissectors/asn1/ngap/NGAP-PDU-Descriptions.asn | -- 3GPP TS 38.413 V17.5.0 (2023-06)
-- 9.4.3 Elementary Procedure Definitions
-- **************************************************************
--
-- Elementary Procedure definitions
--
-- **************************************************************
NGAP-PDU-Descriptions {
itu-t (0) identified-organization (4) etsi... |
Configuration | wireshark/epan/dissectors/asn1/ngap/ngap.cnf | # ngap.cnf
# ngap conformation file
#.OPT
PER
ALIGNED
#.END
#.USE_VALS_EXT
CauseRadioNetwork
ProcedureCode
ProtocolIE-ID
#.EXPORTS ONLY_VALS WS_DLL
#.EXPORTS
LastVisitedNGRANCellInformation_PDU
LastVisitedPSCellInformation_PDU
MDT-Configuration_PDU
MobilityRestrictionList_PDU
NGRAN-CGI_PDU
SecondaryRATDataUsageRepo... |
C | wireshark/epan/dissectors/asn1/ngap/packet-ngap-template.c | /* packet-ngap.c
* Routines for NG-RAN NG Application Protocol (NGAP) packet dissection
* Copyright 2018, Anders Broman <anders.broman@ericsson.com>
* Copyright 2018-2023, Pascal Quantin <pascal@wireshark.org>
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gera... |
C/C++ | wireshark/epan/dissectors/asn1/ngap/packet-ngap-template.h | /* packet-ngap.h
* Routines for NG-RAN NG Application Protocol (NGAP) packet dissection
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PACKET_NGAP_H
#define PACKET_NGAP_H
#include "packet-... |
ASN.1 | wireshark/epan/dissectors/asn1/nist-csor/aes1.asn | --
-- AES OIDs obtained from
-- https://csrc.nist.gov/projects/computer-security-objects-register/algorithm-registration
-- on 2018-08-16, and polished for asn2wrs
--
-- injected SHA-3 family parameter near the bottom
NIST-AES { joint-iso-ccitt(2) country(16) us(840) organization(1) gov(101) csor(3)
nistalgorithm(4) m... |
Text | wireshark/epan/dissectors/asn1/nist-csor/CMakeLists.txt | # CMakeLists.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
set( PROTOCOL_NAME nist-csor )
set( PROTO_OPT )
set( EXPORT_FILES
${PROTOCOL_NAME}-exp.cnf
)
set( EXT_ASN_FILE_LIST
)
set( ASN_FILE_LIST
... |
Configuration | wireshark/epan/dissectors/asn1/nist-csor/nist-csor.cnf | # nist-csor.cnf
# NIST CSOR conformation file
#.IMPORT ../x509af/x509af-exp.cnf
#.IMPORT ../x509ce/x509ce-exp.cnf
#.IMPORT ../x509if/x509if-exp.cnf
#.IMPORT ../x509sat/x509sat-exp.cnf
#.OMIT_ASSIGNMENT
AESAlgorithmIdentifier
#.END
#.EXPORTS
CFBParameters
AES-IV
NumberOfBits
ShakeOutputLen
#.REGISTER
# 128-bit AES ... |
C | wireshark/epan/dissectors/asn1/nist-csor/packet-nist-csor-template.c | /* packet-nist-csor.c
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <epan/packet.h>
#include <epan/oids.h>
#include <epan/asn1.h>
#include "packet-nist-csor.h"
#inclu... |
C/C++ | wireshark/epan/dissectors/asn1/nist-csor/packet-nist-csor-template.h | /* packet-nist-csor.h
* Routines for NIST CSOR
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PACKET_NIST_CSOR_H
#define PACKET_NIST_CSOR_H
#include "packet-nist-csor-exp.h"
#endif /* PA... |
Text | wireshark/epan/dissectors/asn1/novell_pkis/CMakeLists.txt | # CMakeLists.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
set( PROTOCOL_NAME novell_pkis )
set( EXT_ASN_FILE_LIST
)
set( ASN_FILE_LIST
${EXT_ASN_FILE_LIST}
${PROTOCOL_NAME}.asn
)
set( EXTRA_DIST
... |
ASN.1 | wireshark/epan/dissectors/asn1/novell_pkis/novell_pkis.asn | -- from pkisv10.pdf
-- you can find this document at https://web.archive.org/web/19990224174228/http://www.developer.novell.com/repository/attributes/certattrs_v10.htm
PKIS { joint-iso-ccitt(2) country(16) us(840) organization(1) novell (113719) } DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- ASN.1 Definition of Useful Attr... |
Configuration | wireshark/epan/dissectors/asn1/novell_pkis/novell_pkis.cnf | # novell_pkis.cnf
#.MODULE_IMPORT
#.EXPORTS
#.REGISTER
SecurityAttributes B "2.16.840.1.113719.1.9.4.1" "pa-sa"
RelianceLimits B "2.16.840.1.113719.1.9.4.2" "pa-rl"
#.PDU
# PKIS-MESSAGE
#.NO_EMIT
#.TYPE_RENAME
#.FIELD_RENAME
#.END |
C | wireshark/epan/dissectors/asn1/novell_pkis/packet-novell_pkis-template.c | /* packet-novell_pkis.c
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <epan/packet.h>
#include <epan/expert.h>
#include <epan/prefs.h>
#include <epan/oids.h>
#include ... |
Text | wireshark/epan/dissectors/asn1/nr-rrc/CMakeLists.txt | # CMakeLists.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
set( PROTOCOL_NAME nr-rrc )
set( PROTO_OPT )
set( EXPORT_FILES
${PROTOCOL_NAME}-exp.cnf
)
set( EXT_ASN_FILE_LIST
)
set( ASN_FILE_LIST
NR... |
ASN.1 | wireshark/epan/dissectors/asn1/nr-rrc/NR-InterNodeDefinitions.asn | -- 3GPP TS 38.331 V17.5.0 (2023-06)
NR-InterNodeDefinitions DEFINITIONS AUTOMATIC TAGS ::=
BEGIN
IMPORTS
ARFCN-ValueNR,
ARFCN-ValueEUTRA,
CellIdentity,
CGI-InfoEUTRA,
CGI-InfoNR,
CondReconfigExecCondSCG-r17,
CSI-RS-Index,
CSI-RS-CellMobility,
DRX-Config,
EUTRA-PhysCellId,
... |
ASN.1 | wireshark/epan/dissectors/asn1/nr-rrc/NR-RRC-Definitions.asn | -- 3GPP TS 38.331 V17.5.0 (2023-06)
NR-RRC-Definitions DEFINITIONS AUTOMATIC TAGS ::=
BEGIN
-- TAG-NR-RRC-DEFINITIONS-STOP
-- TAG-BCCH-BCH-MESSAGE-START
BCCH-BCH-Message ::= SEQUENCE {
message BCCH-BCH-MessageType
}
BCCH-BCH-MessageType ::= CHOICE {
mib ... |
Configuration | wireshark/epan/dissectors/asn1/nr-rrc/nr-rrc.cnf | # nr-rrc.cnf
# nr-rrc conformation file
# Copyright 2018-2023 Pascal Quantin
#.OPT
PER
UNALIGNED
PROTO_ROOT_NAME proto_nr_rrc
#.END
#.USE_VALS_EXT
BandSidelinkEUTRA-r16/gnb-ScheduledMode3SidelinkEUTRA-r16/gnb-ScheduledMode3DelaySidelinkEUTRA-r16
CA-BandwidthClassNR
ConfiguredGrantConfig/periodicity
ConfiguredGrant... |
ASN.1 | wireshark/epan/dissectors/asn1/nr-rrc/NR-Sidelink-DiscoveryMessage.asn | -- 3GPP TS 38.331 V17.5.0 (2023-06)
NR-Sidelink-DiscoveryMessage DEFINITIONS AUTOMATIC TAGS ::=
BEGIN
IMPORTS
CellAccessRelatedInfo,
SL-ServingCellInfo-r17
FROM NR-RRC-Definitions;
SL-AccessInfo-L2U2N-r17 ::= SEQUENCE {
cellAccessRelatedInfo-r17 CellAccessRelatedInfo,
sl-Ser... |
ASN.1 | wireshark/epan/dissectors/asn1/nr-rrc/NR-Sidelink-Preconf.asn | -- 3GPP TS 38.331 V17.5.0 (2023-06)
NR-Sidelink-Preconf DEFINITIONS AUTOMATIC TAGS ::=
BEGIN
IMPORTS
SL-RemoteUE-Config-r17,
SL-DRX-ConfigGC-BC-r17,
SL-FreqConfigCommon-r16,
SL-RadioBearerConfig-r16,
SL-RLC-BearerConfig-r16,
SL-EUTRA-AnchorCarrierFreqList-r16,
SL-NR-AnchorCarrierFreqList-... |
ASN.1 | wireshark/epan/dissectors/asn1/nr-rrc/NR-UE-Variables.asn | -- 3GPP TS 38.331 V17.5.0 (2023-06)
NR-UE-Variables DEFINITIONS AUTOMATIC TAGS ::=
BEGIN
IMPORTS
AreaConfiguration-v1700,
ARFCN-ValueNR,
CellIdentity,
EUTRA-PhysCellId,
maxCEFReport-r17,
MeasId,
MeasIdToAddModList,
MeasIdleCarrierEUTRA-r16,
MeasIdleCarrierNR-r16,
MeasResultIdl... |
C | wireshark/epan/dissectors/asn1/nr-rrc/packet-nr-rrc-template.c | /* packet-nr-rrc-template.c
* NR;
* Radio Resource Control (RRC) protocol specification
* (3GPP TS 38.331 V17.5.0 Release 17) packet dissection
* Copyright 2018-2023, Pascal Quantin
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License... |
C/C++ | wireshark/epan/dissectors/asn1/nr-rrc/packet-nr-rrc-template.h | /* packet-nr-rrc-template.h
* Copyright 2018-2023, Pascal Quantin
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PACKET_NR_RRC_H
#define PACKET_NR_RRC_H
#include "packet-nr-rrc-exp.h"
int ... |
ASN.1 | wireshark/epan/dissectors/asn1/nr-rrc/PC5-RRC-Definitions.asn | -- 3GPP TS 38.331 V17.5.0 (2023-06)
PC5-RRC-Definitions DEFINITIONS AUTOMATIC TAGS ::=
BEGIN
IMPORTS
CellAccessRelatedInfo,
SetupRelease,
RRC-TransactionIdentifier,
SN-FieldLengthAM,
SN-FieldLengthUM,
LogicalChannelIdentity,
maxNrofSLRB-r16,
maxNrofSL-RxInfoSet-r17,
maxNrofSL-QFIs... |
Text | wireshark/epan/dissectors/asn1/nrppa/CMakeLists.txt | # CMakeLists.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
set( PROTOCOL_NAME nrppa )
set( PROTO_OPT )
set( EXT_ASN_FILE_LIST
)
set( ASN_FILE_LIST
NRPPA-CommonDataTypes.asn
NRPPA-Constants.asn
NR... |
ASN.1 | wireshark/epan/dissectors/asn1/nrppa/NRPPA-CommonDataTypes.asn | -- 3GPP TS 38.455 V17.4.0 (2023-03)
-- 9.3.6 Common definitions
-- **************************************************************
--
-- Common definitions
--
-- **************************************************************
NRPPA-CommonDataTypes {
itu-t (0) identified-organization (4) etsi (0) mobileDomain (0)
ngran-a... |
ASN.1 | wireshark/epan/dissectors/asn1/nrppa/NRPPA-Constants.asn | -- 3GPP TS 38.455 V17.4.0 (2023-03)
-- 9.3.7 Constant definitions
-- **************************************************************
--
-- Constant definitions
--
-- **************************************************************
NRPPA-Constants {
itu-t (0) identified-organization (4) etsi (0) mobileDomain (0)
ngran-acc... |
ASN.1 | wireshark/epan/dissectors/asn1/nrppa/NRPPA-Containers.asn | -- 3GPP TS 38.455 V17.4.0 (2023-03)
-- 9.3.8 Container definitions
--
-- **************************************************************
--
-- Container definitions
--
-- **************************************************************
NRPPA-Containers {
itu-t (0) identified-organization (4) etsi (0) mobileDomain (0)
ngr... |
ASN.1 | wireshark/epan/dissectors/asn1/nrppa/NRPPA-IEs.asn | -- 3GPP TS 38.455 V17.4.0 (2023-03)
-- 9.3.5 Information Element definitions
-- **************************************************************
--
-- Information Element Definitions
--
-- **************************************************************
NRPPA-IEs {
itu-t (0) identified-organization (4) etsi (0) mobileDoma... |
ASN.1 | wireshark/epan/dissectors/asn1/nrppa/NRPPA-PDU-Contents.asn | -- 3GPP TS 38.455 V17.4.0 (2023-03)
--9.3.4 PDU Definitions
--
-- **************************************************************
--
-- PDU definitions for NRPPa.
--
-- **************************************************************
NRPPA-PDU-Contents {
itu-t (0) identified-organization (4) etsi (0) mobileDomain (0)
ngr... |
ASN.1 | wireshark/epan/dissectors/asn1/nrppa/NRPPA-PDU-Descriptions.asn | -- 3GPP TS 38.455 V17.4.0 (2023-03)
--
-- ASN1START
-- **************************************************************
--
-- Elementary Procedure definitions
--
-- **************************************************************
NRPPA-PDU-Descriptions {
itu-t (0) identified-organization (4) etsi (0) mobileDomain (0)
ngra... |
Configuration | wireshark/epan/dissectors/asn1/nrppa/nrppa.cnf | # nrppa.cnf
# nrppa conformation file
# Copyright 2019 Anders Broman
#.OPT
PER
ALIGNED
#.END
#.MAKE_ENUM
ProcedureCode
ProtocolIE-ID
#.OMIT_ASSIGNMENT
Presence
ProtocolIE-ContainerList
PRS-ID
SRSResourceID-Item
#.EXPORTS
Assistance-Information_PDU
#.PDU
Assistance-Information
NRPPA-PDU
#.TYPE_RENAME
InitiatingMes... |
C | wireshark/epan/dissectors/asn1/nrppa/packet-nrppa-template.c | /* packet-nrppa.c
* Routines for 3GPP NR Positioning Protocol A (NRPPa) packet dissection
* Copyright 2019, Anders Broman <anders.broman@ericsson.com>
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*
... |
C/C++ | wireshark/epan/dissectors/asn1/nrppa/packet-nrppa-template.h | /* packet-nrppa.h
* Routines for 3GPP NR Positioning Protocol A (NRPPa) packet dissection
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PACKET_NRPPA_H
#define PACKET_NRPPA_H
#include "pac... |
Text | wireshark/epan/dissectors/asn1/ns_cert_exts/CMakeLists.txt | # CMakeLists.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
set( PROTOCOL_NAME ns_cert_exts )
set( PROTO_OPT )
set( EXT_ASN_FILE_LIST
)
set( ASN_FILE_LIST
NETSCAPE-CERT-EXTS.asn
)
set( EXTRA_DIST
... |
ASN.1 | wireshark/epan/dissectors/asn1/ns_cert_exts/NETSCAPE-CERT-EXTS.asn | -- NetScape Certificate Extensions
-- based on information from http://wp.netscape.com/eng/security/cert-exts.html
NS-CERT-EXTS { 2 16 840 1 113730 1 } DEFINITIONS EXPLICIT TAGS ::=
BEGIN
BaseUrl ::= IA5String
RevocationUrl ::= IA5String
CaRevocationUrl ::= IA5String
CaPolicyUrl ::= IA5String
Comment ::= IA5Strin... |
Configuration | wireshark/epan/dissectors/asn1/ns_cert_exts/ns_cert_exts.cnf | # NS-CERT-EXT.cnf
# NetScape Certificate Extensions conformation file
#.MODULE_IMPORT
#.EXPORTS
#.REGISTER
CertType B "2.16.840.1.113730.1.1" "ns_cert_exts.cert_type"
BaseUrl B "2.16.840.1.113730.1.2" "ns_cert_exts.base_url"
RevocationUrl B "2.16.840.1.113730.1.3" "ns_cert_exts.revocation-url"
Ca... |
C | wireshark/epan/dissectors/asn1/ns_cert_exts/packet-ns_cert_exts-template.c | /* packet-ns_cert_exts.c
* Routines for NetScape Certificate Extensions packet dissection
* Ronnie Sahlberg 2004
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <epa... |
Text | wireshark/epan/dissectors/asn1/ocsp/CMakeLists.txt | # CMakeLists.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
set( PROTOCOL_NAME ocsp )
set( PROTO_OPT )
set( EXT_ASN_FILE_LIST
)
set( ASN_FILE_LIST
OCSP.asn
)
set( EXTRA_DIST
${ASN_FILE_LIST}
pack... |
ASN.1 | wireshark/epan/dissectors/asn1/ocsp/OCSP.asn | -- Online Certificate Status Protocol
-- RFC 2560
-- This definition was taken from RFC2560 and modified to pass through
-- asn2wrs.
-- The original copyright from RFC2650 follows below
--
-- Full Copyright Statement
--
-- Copyright (C) The Internet Society (1999). All Rights Reserved.
--
-- This document and... |
Configuration | wireshark/epan/dissectors/asn1/ocsp/ocsp.cnf | # ocsp.cnf
# OCSP conformation file
#.TYPE_ATTR
# pkix1explicit also exports the type CertificateSerialNumber. This makes sure asn2wrs uses the locally defined version.
CertificateSerialNumber TYPE = FT_BYTES DISPLAY = BASE_NONE STRINGS = NULL BITMASK = 0
#.END
#.MODULE_IMPORT
PKIX1Implicit88 pkix1implicit
PKIX1E... |
C | wireshark/epan/dissectors/asn1/ocsp/packet-ocsp-template.c | /* packet-ocsp.c
* Routines for Online Certificate Status Protocol (RFC2560) packet dissection
* Ronnie Sahlberg 2004
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include ... |
C/C++ | wireshark/epan/dissectors/asn1/ocsp/packet-ocsp-template.h | /* packet-ocsp.h
* Routines for Online Certificate Status Protocol (RFC2560) packet dissection
* Ronnie Sahlberg 2004
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PACKET_OCSP_H
#define ... |
Text | wireshark/epan/dissectors/asn1/p1/CMakeLists.txt | # CMakeLists.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
set( PROTOCOL_NAME p1 )
set( PROTO_OPT )
set( EXPORT_FILES
${PROTOCOL_NAME}-exp.cnf
)
set( EXT_ASN_FILE_LIST
)
set( ASN_FILE_LIST
MTAAbs... |
ASN.1 | wireshark/epan/dissectors/asn1/p1/MHSProtocolObjectIdentifiers.asn | -- http://www.itu.int/ITU-T/asn1/database/itu-t/x/x419/1999/index.html
-- Module MHSProtocolObjectIdentifiers (X.419:06/1999)
MHSProtocolObjectIdentifiers {joint-iso-itu-t mhs(6) protocols(0) modules(0)
object-identifiers(0) version-1994(0)} DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- Prologue
-- Exports Everything
IMPOR... |
ASN.1 | wireshark/epan/dissectors/asn1/p1/MTAAbstractService.asn | -- Module MTAAbstractService (X.411:06/1999)
MTAAbstractService {joint-iso-itu-t mhs(6) mts(3) modules(0)
mta-abstract-service(2) version-1999(1)} DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- Prologue
-- Exports everything
IMPORTS
-- Remote Operations
CONNECTION-PACKAGE, CONTRACT, OPERATION-PACKAGE
--==
FROM R... |
ASN.1 | wireshark/epan/dissectors/asn1/p1/MTSAbstractService.asn | -- Module MTSAbstractService (X.411:06/1999)
MTSAbstractService {joint-iso-itu-t mhs(6) mts(3) modules(0)
mts-abstract-service(1) version-1999(1)} DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- Prologue
-- Exports everything
IMPORTS
-- Remote Operations
CONNECTION-PACKAGE, CONTRACT, ERROR, OPERATION, OPERATION-PACKAGE,
... |
ASN.1 | wireshark/epan/dissectors/asn1/p1/MTSAccessProtocol.asn | -- http://www.itu.int/ITU-T/asn1/database/itu-t/x/x411/1999/index.html
-- Module MTSAccessProtocol (X.419:06/1999)
MTSAccessProtocol {joint-iso-itu-t mhs(6) protocols(0) modules(0)
mts-access-protocol(1) version-1999(1)} DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- Prologue
IMPORTS
-- MTS Abstract Service
administrati... |
ASN.1 | wireshark/epan/dissectors/asn1/p1/MTSUpperBounds.asn | -- Module MTSUpperBounds (X.411:06/1999)
-- See also ITU-T X.411 (06/1999)
-- See also the index of all ASN.1 assignments needed in this document
MTSUpperBounds {joint-iso-itu-t mhs(6) mts(3) modules(0) upper-bounds(3)
version-1999(1)} DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- Prologue
-- Exports everything
IMPORTS --... |
Configuration | wireshark/epan/dissectors/asn1/p1/p1.cnf | # p1.cnf
# X.411 (MTA Access and Transfer) conformance file
#.TYPE_ATTR
CountryName TYPE = FT_UINT32 DISPLAY = BASE_DEC STRINGS = VALS(p1_CountryName_U_vals) BITMASK = 0
Time TYPE = FT_STRING DISPLAY = BASE_NONE STRING = NULL BITMASK = 0
#.IMPORT ../x509ce/x509ce-exp.cnf
#.IMPORT ../x509if/x509if-exp.cnf
#.IMP... |
C | wireshark/epan/dissectors/asn1/p1/packet-p1-template.c | /* packet-p1.c
* Routines for X.411 (X.400 Message Transfer) packet dissection
* Graeme Lunt 2005
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <epan/packet.h>
#inc... |
C/C++ | wireshark/epan/dissectors/asn1/p1/packet-p1-template.h | /* packet-p3.h
* Routines for X.411 (X.400 Message Transfer) packet dissection
* Graeme Lunt 2005
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PACKET_P1_H
#define PACKET_P1_H
#include "... |
Text | wireshark/epan/dissectors/asn1/p22/CMakeLists.txt | # CMakeLists.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
set( PROTOCOL_NAME p22 )
set( PROTO_OPT )
set( EXPORT_FILES
${PROTOCOL_NAME}-exp.cnf
)
set( EXT_ASN_FILE_LIST
)
set( ASN_FILE_LIST
IPMSI... |
ASN.1 | wireshark/epan/dissectors/asn1/p22/IPMSExtendedBodyPartTypes2.asn | -- http://www.itu.int/ITU-T/asn1/database/itu-t/x/x420/1999/index.html
-- Module IPMSExtendedBodyPartTypes2 (X.420:06/1999)
IPMSExtendedBodyPartTypes2 {iso standard mhs(10021) ipms(7) modules(0)
extended-body-part-types-2(1)} DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- Prologue
-- Exports everything.
IMPORTS
-- IPMS In... |
ASN.1 | wireshark/epan/dissectors/asn1/p22/IPMSExtendedVoiceBodyPartType.asn | -- http://www.itu.int/ITU-T/asn1/database/itu-t/x/x420/1999/index.html
-- Module IPMSExtendedVoiceBodyPartType (X.420:06/1999)
IPMSExtendedVoiceBodyPartType {joint-iso-itu-t mhs(6) ipms(1) modules(0)
extended-voice-body-part-type(11)} DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- Prologue
-- Exports everything.
IMPORTS
-... |
ASN.1 | wireshark/epan/dissectors/asn1/p22/IPMSFileTransferBodyPartType.asn | -- http://www.itu.int/ITU-T/asn1/database/itu-t/x/x420/1999/index.html
-- Module IPMSFileTransferBodyPartType (X.420:06/1999)
IPMSFileTransferBodyPartType {joint-iso-itu-t mhs(6) ipms(1) modules(0)
file-transfer-body-part-type(9)} DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- Prologue
-- Exports everything.
IMPORTS
-- FT... |
ASN.1 | wireshark/epan/dissectors/asn1/p22/IPMSForwardedContentBodyPartType.asn | -- http://www.itu.int/ITU-T/asn1/database/itu-t/x/x420/1999/index.html
-- Module IPMSForwardedContentBodyPartType (X.420:06/1999)
IPMSForwardedContentBodyPartType {joint-iso-itu-t mhs(6) ipms(1) modules(0)
forwarded-content-body-part-type(15)} DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- Prologue
-- Exports everything.
IM... |
ASN.1 | wireshark/epan/dissectors/asn1/p22/IPMSHeadingExtensions.asn | -- http://www.itu.int/ITU-T/asn1/database/itu-t/x/x420/1999/index.html
-- Module IPMSHeadingExtensions (X.420:06/1999)
IPMSHeadingExtensions {joint-iso-itu-t mhs(6) ipms(1) modules(0)
heading-extensions(6) version-1999(1)} DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- Prologue
-- Exports everything.
IMPORTS
-- IPMS Infor... |
ASN.1 | wireshark/epan/dissectors/asn1/p22/IPMSInformationObjects.asn | -- http://www.itu.int/ITU-T/asn1/database/itu-t/x/x420/1999/index.html
-- Module IPMSInformationObjects (X.420:06/1999)
IPMSInformationObjects {joint-iso-itu-t mhs(6) ipms(1) modules(0)
information-objects(2) version-1999(1)} DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- Prologue
-- Exports everything.
IMPORTS
-- IPMS Ex... |
ASN.1 | wireshark/epan/dissectors/asn1/p22/IPMSMessageStoreAttributes.asn | -- http://www.itu.int/ITU-T/asn1/database/itu-t/x/x420/1999/index.html
-- Module IPMSMessageStoreAttributes (X.420:06/1999)
IPMSMessageStoreAttributes {joint-iso-itu-t mhs(6) ipms(1) modules(0)
message-store-attributes(8) version-1999(1)} DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- Prologue
-- Exports everything.
IMPORTS... |
ASN.1 | wireshark/epan/dissectors/asn1/p22/IPMSObjectIdentifiers.asn | -- http://www.itu.int/ITU-T/asn1/database/itu-t/x/x420/1999/index.html
-- Module IPMSObjectIdentifiers (X.420:06/1999)
IPMSObjectIdentifiers {joint-iso-itu-t mhs(6) ipms(1) modules(0)
object-identifiers(0) version-1999(1)} DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- Prologue
-- Exports everything.
IMPORTS -- nothing -- ;... |
ASN.1 | wireshark/epan/dissectors/asn1/p22/IPMSSecurityExtensions.asn | -- http://www.itu.int/ITU-T/asn1/database/itu-t/x/x420/1999/index.html
-- Module IPMSSecurityExtensions (X.420:06/1999)
IPMSSecurityExtensions {joint-iso-itu-t mhs(6) ipms(1) modules(0)
ipm-security-extensions(14) version-1999(1)} DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- Prologue
-- Exports everything
IMPORTS
-- MTS... |
ASN.1 | wireshark/epan/dissectors/asn1/p22/IPMSUpperBounds.asn | -- Module IPMSUpperBounds (X.420:06/1999)
-- See also ITU-T X.420 (06/1999)
-- See also the index of all ASN.1 assignments needed in this document
IPMSUpperBounds {joint-iso-itu-t mhs(6) ipms(1) modules(0) upper-bounds(10)
version-1999(1)} DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- Prologue
-- Exports everything.
IMPOR... |
Configuration | wireshark/epan/dissectors/asn1/p22/p22.cnf | # p22.cnf
# X.420 (InterPersonal Messaging) conformance file
#.TYPE_ATTR
Time TYPE = FT_STRING DISPLAY = BASE_NONE STRING = NULL BITMASK = 0
# Permitted-Actions-Attribute is exported from FTAM as DISPLAY = BASE_HEX -
# but this causes a runtime error.
# We override the definition here until we can identify the fix... |
C | wireshark/epan/dissectors/asn1/p22/packet-p22-template.c | /* packet-p22.c
* Routines for X.420 (X.400 Message Transfer) packet dissection
* Graeme Lunt 2005
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <epan/packet.h>
#in... |
C/C++ | wireshark/epan/dissectors/asn1/p22/packet-p22-template.h | /* packet-p22.h
* Routines for X.420 (X.400 Message Transfer) packet dissection
* Graeme Lunt 2005
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PACKET_P22_H
#define PACKET_P22_H
#includ... |
Text | wireshark/epan/dissectors/asn1/p7/CMakeLists.txt | # CMakeLists.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
set( PROTOCOL_NAME p7 )
set( PROTO_OPT )
set( EXPORT_FILES
${PROTOCOL_NAME}-exp.cnf
)
set( EXT_ASN_FILE_LIST
)
set( ASN_FILE_LIST
MSAbst... |
ASN.1 | wireshark/epan/dissectors/asn1/p7/MSAbstractService.asn | -- http://www.itu.int/ITU-T/asn1/database/itu-t/x/x413/1999/index.html
-- Module MSAbstractService (X.413:06/1999)
MSAbstractService {joint-iso-itu-t mhs(6) ms(4) modules(0) abstract-service(1)
version-1999(1)} DEFINITIONS ::=
BEGIN
-- Prologue
-- Exports everything
IMPORTS
-- MTS information object classes
oper... |
ASN.1 | wireshark/epan/dissectors/asn1/p7/MSAccessProtocol.asn | -- http://www.itu.int/ITU-T/asn1/database/itu-t/x/x419/1999/index.html
-- Module MSAccessProtocol (X.419:06/1999)
MSAccessProtocol {joint-iso-itu-t mhs(6) protocols(0) modules(0)
ms-access-protocol(2) version-1999(1)} DEFINITIONS ::=
BEGIN
-- Prologue
IMPORTS
-- MS Abstract Service
ms-access-contract-88, ms-acce... |
ASN.1 | wireshark/epan/dissectors/asn1/p7/MSGeneralAttributeTypes.asn | -- Module MSGeneralAttributeTypes (X.413:06/1999)
MSGeneralAttributeTypes {joint-iso-itu-t mhs(6) ms(4) modules(0)
general-attribute-types(2) version-1999(1)} DEFINITIONS ::=
BEGIN
-- Prologue
IMPORTS
-- X413ATTRIBUTE information object class
X413ATTRIBUTE,
-- MS abstract-service data-types
AutoActionErr... |
ASN.1 | wireshark/epan/dissectors/asn1/p7/MSUpperBounds.asn | -- Module MSUpperBounds (X.413:06/1999)
-- See also ITU-T X.413 (06/1999)
-- See also the index of all ASN.1 assignments needed in this document
MSUpperBounds {joint-iso-itu-t mhs(6) ms(4) modules(0) upper-bounds(4)
version-1994(0)} DEFINITIONS ::=
BEGIN
-- Exports everything
IMPORTS -- nothing -- ;
-- Upper Boun... |
Configuration | wireshark/epan/dissectors/asn1/p7/p7.cnf | #.IMPORT ../p1/p1-exp.cnf
#.IMPORT ../ros/ros-exp.cnf
#.IMPORT ../rtse/rtse-exp.cnf
#.MODULE
Reliable-Transfer-APDU rtse
#.EXPORTS
SequenceNumber
SignatureStatus
#.END
# Forward declaration of Classes
# CONNECTION-PACKAGE CONTRACT from ROS
#.CLASS CONNECTION-PACKAGE
&bind ClassReference OPE... |
C | wireshark/epan/dissectors/asn1/p7/packet-p7-template.c | /* packet-p7.c
* Routines for X.413 (P7) packet dissection
* Graeme Lunt 2007
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <epan/packet.h>
#include <epan/prefs.h>
#... |
C/C++ | wireshark/epan/dissectors/asn1/p7/packet-p7-template.h | /* packet-p7.h
* Routines for X.413 (P7) packet dissection
* Graeme Lunt 2007
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PACKET_P7_H
#define PACKET_P7_H
#include "packet-p7-exp.h"
#e... |
Text | wireshark/epan/dissectors/asn1/p772/CMakeLists.txt | # CMakeLists.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
set( PROTOCOL_NAME p772 )
set( PROTO_OPT )
set( EXT_ASN_FILE_LIST
)
set( ASN_FILE_LIST
MMSAbstractService.asn
MMSInformationObjects.asn
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.