aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-someip.h
diff options
context:
space:
mode:
authorDr. Lars Völker <lars.voelker@bmw.de>2019-09-10 20:24:32 +0200
committerAnders Broman <a.broman58@gmail.com>2019-09-26 04:01:33 +0000
commit3aeaf5c6fcf0ef24a8c617548e391d137181cc95 (patch)
treea96be62f14ad614948c9729c52a843f1d17858f5 /epan/dissectors/packet-someip.h
parent75dc0933c6d6bc3620b68ee05202a4da1a61f241 (diff)
SOMEIP: Adding support for the SOME/IP protocol.
The Scalable service-Oriented MiddlewarE over IP (SOME/IP) is the standard communication middleware for IP and Ethernet based communication. It supports Service Discovery, RPC, Pub/Sub, and more. Bug: 16014 Change-Id: Ifd6549818ccc87f376a5fb9ba1d6c335818c6e00 Signed-off-by: Dr. Lars Völker <lars.voelker@bmw.de> Reviewed-on: https://code.wireshark.org/review/34497 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-someip.h')
-rw-r--r--epan/dissectors/packet-someip.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/epan/dissectors/packet-someip.h b/epan/dissectors/packet-someip.h
new file mode 100644
index 0000000000..41eb7e8536
--- /dev/null
+++ b/epan/dissectors/packet-someip.h
@@ -0,0 +1,32 @@
+/* packet-someip.h
+ * Definitions for SOME/IP packet disassembly structures and routines
+ * By Dr. Lars Voelker <lars-github@larsvoelker.de> / <lars.voelker@bmw.de>
+ * Copyright 2012-2019 Dr. Lars Voelker
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+/* used for SD to add ports dynamically */
+void register_someip_port_udp(guint32 portnumber);
+void register_someip_port_tcp(guint32 portnumber);
+
+/* look up names for SD */
+char* someip_lookup_service_name(guint16 serviceid);
+char* someip_lookup_eventgroup_name(guint16 serviceid, guint16 eventgroupid);
+
+/*
+ * Editor modelines
+ *
+ * Local Variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * ex: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */