diff options
author | Vladimir Gavrilov <105977161+0xA50C1A1@users.noreply.github.com> | 2023-11-23 00:04:22 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-22 22:04:22 +0100 |
commit | 5c8c5c90c2b0d34a3e528c7271de7ac5c131a027 (patch) | |
tree | cba274810f954746a2ca5bb07019fe0a826bb22b /windows | |
parent | 21f25740337c6c0412181c135b8cee8881fc7f58 (diff) |
Add HART-IP protocol dissector (#2163)
* Add HART-IP protocol dissector
* Update docs
* Update protocols.rst
* Reuse free proto id and re-run tests
* docs: move HART-IP to top of list
---------
Co-authored-by: 0xA50C1A1 <mage.wizard88@gmail.com>
Diffstat (limited to 'windows')
-rw-r--r-- | windows/nDPI.vcxproj | 1 | ||||
-rw-r--r-- | windows/nDPI.vcxproj.filters | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/windows/nDPI.vcxproj b/windows/nDPI.vcxproj index ac4a7cab8..70e0f54dd 100644 --- a/windows/nDPI.vcxproj +++ b/windows/nDPI.vcxproj @@ -332,6 +332,7 @@ <ClCompile Include="..\src\lib\protocols\zattoo.c" /> <ClCompile Include="..\src\lib\protocols\zeromq.c" /> <ClCompile Include="..\src\lib\protocols\ptpv2.c" /> + <ClCompile Include="..\src\lib\protocols\hart-ip.c" /> <ClCompile Include="..\src\lib\third_party\src\gcrypt_light.c" /> <ClCompile Include="..\src\lib\third_party\src\libcache.c" /> <ClCompile Include="..\src\lib\third_party\src\libinjection_html5.c" /> diff --git a/windows/nDPI.vcxproj.filters b/windows/nDPI.vcxproj.filters index 2be9e665a..cf34c77ba 100644 --- a/windows/nDPI.vcxproj.filters +++ b/windows/nDPI.vcxproj.filters @@ -114,6 +114,7 @@ <ClCompile Include="..\src\lib\protocols\zattoo.c" /> <ClCompile Include="..\src\lib\protocols\zeromq.c" /> <ClCompile Include="..\src\lib\protocols\ptpv2.c" /> + <ClCompile Include="..\src\lib\protocols\hart-ip.c" /> <ClCompile Include="src\getopt.c" /> <ClCompile Include="src\win-gettimeofday.c" /> <ClCompile Include="..\src\lib\ndpi_analyze.c" /> |