Skip to content

Commit

Permalink
added repo to plugin info
Browse files Browse the repository at this point in the history
  • Loading branch information
TGruett committed May 31, 2024
1 parent 13118a8 commit 4315fe7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Wireshark/plugins/v2gllc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ local v2gcommon = require("v2gcommon")
p_hpav_llc = Proto("homeplug-av-llc", "HomePlug AV protocol LLC diagnostics")
local p_hpav_llc_info = {
version = v2gcommon.DS_V2GSHARK_VERSION,
author = "dSPACE GmbH"
author = "dSPACE GmbH",
repository = "https://github.com/dspace-group/dsV2Gshark"
}
set_plugin_info(p_hpav_llc_info)

Expand Down
3 changes: 2 additions & 1 deletion Wireshark/plugins/v2gmsg.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ p_v2gmsg = Proto("v2gmsg", "V2G Message")
local p_v2gmsg_info = {
version = v2gcommon.DS_V2GSHARK_VERSION,
author = "dSPACE GmbH",
description = "Dissector for V2G Messages (DIN 70121, ISO15118-2, ISO15118-20)"
description = "Dissector for V2G Messages (DIN 70121, ISO15118-2, ISO15118-20)",
repository = "https://github.com/dspace-group/dsV2Gshark"
}
set_plugin_info(p_v2gmsg_info)

Expand Down
3 changes: 2 additions & 1 deletion Wireshark/plugins/v2gsdp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ p_sdpreq = Proto("v2gsdp-req", "V2G SECC Discovery Protocol Request")
p_sdpres = Proto("v2gsdp-res", "V2G SECC Discovery Protocol Response")
local p_v2gsdp_info = {
version = v2gcommon.DS_V2GSHARK_VERSION,
author = "dSPACE GmbH"
author = "dSPACE GmbH",
repository = "https://github.com/dspace-group/dsV2Gshark"
}
set_plugin_info(p_v2gsdp_info)

Expand Down
3 changes: 2 additions & 1 deletion Wireshark/plugins/v2gtlssecret.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ local v2gcommon = require("v2gcommon")
p_v2gtlssecret = Proto("v2gtlssecret", "V2G TLS secret")
local p_v2gtlssecret_info = {
version = v2gcommon.DS_V2GSHARK_VERSION,
author = "dSPACE GmbH"
author = "dSPACE GmbH",
repository = "https://github.com/dspace-group/dsV2Gshark"
}
set_plugin_info(p_v2gtlssecret_info)

Expand Down
3 changes: 2 additions & 1 deletion Wireshark/plugins/v2gtp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ local v2gcommon = require("v2gcommon")
p_v2gtp = Proto("v2gtp", "V2G Transfer Protocol")
local p_v2gtp_info = {
version = v2gcommon.DS_V2GSHARK_VERSION,
author = "dSPACE GmbH"
author = "dSPACE GmbH",
repository = "https://github.com/dspace-group/dsV2Gshark"
}
set_plugin_info(p_v2gtp_info)

Expand Down

0 comments on commit 4315fe7

Please sign in to comment.