diff options
author | Vladimir Gavrilov <105977161+0xA50C1A1@users.noreply.github.com> | 2023-12-16 15:30:21 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-16 13:30:21 +0100 |
commit | 0f3e6d832b3df7f6eb5ded0296142f6f93537022 (patch) | |
tree | 788dcb3e67ee27faef5c5f409229e9637b55c6b6 /windows | |
parent | 8ea16ffd77d486cce4c4bb0d58d80b32d68a4f4f (diff) |
Add PROFINET/IO protocol dissector (#2213)
* Add PROFINET/IO protocol dissector
* Add LE (Little Endian) to the file name
* Rework dissector
* Remove redundant check
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 4363d45d8..0d655a138 100644 --- a/windows/nDPI.vcxproj +++ b/windows/nDPI.vcxproj @@ -342,6 +342,7 @@ <ClCompile Include="..\src\lib\protocols\iso9506-1-mms.c" /> <ClCompile Include="..\src\lib\protocols\ieee-c37118.c" /> <ClCompile Include="..\src\lib\protocols\ethersbus.c" /> + <ClCompile Include="..\src\lib\protocols\profinet_io.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 a958cd342..23b40b17b 100644 --- a/windows/nDPI.vcxproj.filters +++ b/windows/nDPI.vcxproj.filters @@ -123,6 +123,7 @@ <ClCompile Include="..\src\lib\protocols\iso9506-1-mms.c" /> <ClCompile Include="..\src\lib\protocols\ieee-c37118.c" /> <ClCompile Include="..\src\lib\protocols\ethersbus.c" /> + <ClCompile Include="..\src\lib\protocols\profinet_io.c" /> <ClCompile Include="src\getopt.c" /> <ClCompile Include="src\win-gettimeofday.c" /> <ClCompile Include="..\src\lib\ndpi_analyze.c" /> |