forked from sonic-net/sonic-buildimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2fbe729 disable cfg dynamic change (#25) 13d0805 Use github code scanning instead of LGTM (#26) 1e846f6 Fix packet range check for relay-reply packets (#21) 4d19e13 (work/master, master) Add unittest infrastructure (#5) 7f4fdab fix packet range check issue (#20) 257ecdf Add client packet UDP header length check (#19) Signed-off-by: Vivek Reddy Karri <vkarri@nvidia.com>
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule dhcprelay
updated
19 files
+11 −2 | .azure-pipelines/build.yml | |
+4 −0 | .github/codeql/codeql-config.yml | |
+80 −0 | .github/workflows/codeql-analysis.yml | |
+43 −13 | Makefile | |
+1 −1 | azure-pipelines.yml | |
+22 −13 | src/configInterface.cpp | |
+11 −5 | src/configInterface.h | |
+83 −72 | src/relay.cpp | |
+40 −17 | src/relay.h | |
+23 −0 | src/sender.cpp | |
+20 −0 | src/sender.h | |
+5 −4 | src/subdir.mk | |
+560 −0 | test/MockRelay.cpp | |
+2 −0 | test/MockRelay.h | |
+27 −0 | test/database_config.json | |
+28 −0 | test/main.cpp | |
+17 −0 | test/mock_send.cpp | |
+10 −0 | test/mock_send.h | |
+6 −0 | test/subdir.mk |