Skip to content

Commit

Permalink
updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
TGruett committed May 17, 2024
1 parent 56ad0d6 commit 28e904d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
cp ./V2G_Libraries/V2GDecoder/bin/* ./artifact_dir/
mkdir artifact_dir/plugins
cp ./Wireshark/plugins/* ./artifact_dir/plugins/
echo "dSPACE V2Gshark Wireshark Plugin" > ./artifact_dir/README
echo "Please copy the .so files and the 'plugins' directory into your Wireshark installation or into your personal plugin directory (%appdata%/wireshark)." >> ./artifact_dir/README
cp ./LICENSE ./artifact_dir/dsV2Gshark_LICENSE.txt
cp ./README.md ./artifact_dir/README
- name: Upload Win64 Files
uses: actions/upload-artifact@v4
Expand All @@ -60,8 +60,8 @@ jobs:
cp ./V2G_Libraries/V2GDecoder/bin/* ./artifact_dir/
mkdir artifact_dir/plugins
cp ./Wireshark/plugins/* ./artifact_dir/plugins/
echo "dSPACE V2Gshark Wireshark Plugin" > ./artifact_dir/README
echo "Please copy the .so files and the 'plugins' directory into your Wireshark installation or into your personal plugin directory (~/.local/lib/wireshark)." >> ./artifact_dir/README
cp ./LICENSE ./artifact_dir/dsV2Gshark_LICENSE.txt
cp ./README.md ./artifact_dir/README
- name: Upload Linux Files
uses: actions/upload-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions OSSAcknowledgements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -141,15 +141,15 @@ cbExiGen

The license text of the 'Apache License Version 2.0' can be found in APPENDIX A.

Wireshark 4.2.4
Wireshark 4.2.5
Copyright:
Copyright 1998-2024 Gerald Combs <[email protected]> and contributors
Repository: https://gitlab.com/wireshark/wireshark
License: GNU GENERAL PUBLIC LICENSE v2.0

The license text of the 'GNU GENERAL PUBLIC LICENSE v2.0' can be found in APPENDIX A.

GnuTLS 3.8.3
GnuTLS 3.8.4
URL: https://www.gnutls.org/
License: GnuTLS License

Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ Click on a packet in the graph to inspect it in the Wireshark main window. Press

## Installation notes
- The installer can be downloaded from [GitHub Releases](https://github.com/dspace-group/dsV2Gshark/releases/latest)
- To use the plugin without installer, download the zipped files from [GitHub Releases](https://github.com/dspace-group/dsV2Gshark/releases/latest) and copy its content manually into your Wireshark installation or into your personal plugin directory (Windows: %appdata%/wireshark/, Linux: ~/.local/lib/wireshark/). The filter buttons, color filter and I/O Graph configuration must be added manually in this case.
- When updating Wireshark, please reinstall the plugin to avoid any warnings
- Not compatible with other V2G dissector plugins. Please uninstall these plugins before installing dsV2Gshark.
- Not compatible with 32 bit versions of Wireshark.
Expand All @@ -60,8 +61,8 @@ Click on a packet in the graph to inspect it in the Wireshark main window. Press
- ISO 15118-20 is not fully supported yet
- please let us know if you encounter incorrectly decoded packets
- Linux
- no installer, please copy the files manually into your Wireshark installation or into your personal plugin directory (~/.local/lib/wireshark)
- filter buttons and color filters must be added manually
- No installer, see [Installation Notes](#installation-notes). Make sure you have read permissions for all files.
- Filter buttons and color filters must be added manually
- I/O graph must be configured manually

## Support
Expand All @@ -71,7 +72,7 @@ Click on a packet in the graph to inspect it in the Wireshark main window. Press
## Further notes
- When sniffing V2G communication, lost packets may occur, which cause corrupted TCP/TLS sessions. In that case, it may help to activate the option to ignore Message Authentication Code (MAC) check failures in the Wireshark TLS protocol settings.
This option can be found under Wireshark Preferences - Protocols - TLS
- This plugin was built and tested with Wireshark 4.2.4
- This plugin was built and tested with Wireshark 4.2.5
- The EXI decoding is based on [cbExiGen](https://github.com/EVerest/cbexigen)


Expand Down
2 changes: 1 addition & 1 deletion V2G_Libraries/Third_Party/cbv2g/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ OBJECTS = $(patsubst %.c,$(OBJ_DIR)/%.o,$(SOURCE))
DEPS = $(patsubst %.h,$(OBJ_DIR)/%.d,$(HEADER))
INCLUDES = $(wildcard */.)
LFLAGS = $(foreach d, $(INCLUDES), -I"$(d)") -MP -MD
FLAGS = -c -Wall -O3
FLAGS = -c -Wall -O3 -fPIC

build: $(OBJECTS)

Expand Down

0 comments on commit 28e904d

Please sign in to comment.