diff options
author | Vladimir Gavrilov <105977161+0xA50C1A1@users.noreply.github.com> | 2024-01-02 22:57:05 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-02 20:57:05 +0100 |
commit | 7f9973bd0ce2366c09c614d2fdb2883f27ba1106 (patch) | |
tree | a233c5d13a13ddfaa8faba8b1dc67a37f438ef24 /windows | |
parent | 88d1416b7007307dabccf391cd5731059b376687 (diff) |
Add HL7 protocol dissector (#2240)
* Add HL7 protocol dissector
* Small fixes
* Small fixes
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 7bf40d59b..f036fdb0c 100644 --- a/windows/nDPI.vcxproj +++ b/windows/nDPI.vcxproj @@ -350,6 +350,7 @@ <ClCompile Include="..\src\lib\protocols\kafka.c" /> <ClCompile Include="..\src\lib\protocols\nomachine.c" /> <ClCompile Include="..\src\lib\protocols\iec62056.c" /> + <ClCompile Include="..\src\lib\protocols\hl7.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 3b19d7723..577443dc1 100644 --- a/windows/nDPI.vcxproj.filters +++ b/windows/nDPI.vcxproj.filters @@ -131,6 +131,7 @@ <ClCompile Include="..\src\lib\protocols\kafka.c" /> <ClCompile Include="..\src\lib\protocols\nomachine.c" /> <ClCompile Include="..\src\lib\protocols\iec62056.c" /> + <ClCompile Include="..\src\lib\protocols\hl7.c" /> <ClCompile Include="src\getopt.c" /> <ClCompile Include="src\win-gettimeofday.c" /> <ClCompile Include="..\src\lib\ndpi_analyze.c" /> |