diff options
author | Vladimir Gavrilov <105977161+0xA50C1A1@users.noreply.github.com> | 2024-04-12 18:44:36 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-12 17:44:36 +0200 |
commit | c63697205be7ff027860b03d0fcddf40503b43d6 (patch) | |
tree | 46e448a6c6b69ed3180a663495d2c1ec8b50165f /windows | |
parent | 93f02ee507d050eedc88a8b9d66b20c97917e476 (diff) |
Add Label Distribution Protocol support (#2385)
* Add Label Distribution Protocol support
* Fix typo
* Update unit test results
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 9fad2cc96..1beec30a3 100644 --- a/windows/nDPI.vcxproj +++ b/windows/nDPI.vcxproj @@ -374,6 +374,7 @@ <ClCompile Include="..\src\lib\protocols\flute.c" /> <ClCompile Include="..\src\lib\protocols\lol_wild_rift.c" /> <ClCompile Include="..\src\lib\protocols\teso.c" /> + <ClCompile Include="..\src\lib\protocols\ldp.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 0cbbf828c..00531f4ed 100644 --- a/windows/nDPI.vcxproj.filters +++ b/windows/nDPI.vcxproj.filters @@ -149,6 +149,7 @@ <ClCompile Include="..\src\lib\protocols\flute.c" /> <ClCompile Include="..\src\lib\protocols\lol_wild_rift.c" /> <ClCompile Include="..\src\lib\protocols\teso.c" /> + <ClCompile Include="..\src\lib\protocols\ldp.c" /> <ClCompile Include="src\getopt.c" /> <ClCompile Include="src\win-gettimeofday.c" /> <ClCompile Include="..\src\lib\ndpi_analyze.c" /> |