-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add proper message size check for UDP (#92)
Added a path MTU config parameter for InitExportingProcess function. For UDP transport, based on path MTU parameter, we make a decision on the message size. This is optional parameter for TCP transport; TCP supports max socket buffer size (65535).
- Loading branch information
1 parent
499c7d9
commit 150f98e
Showing
9 changed files
with
84 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,11 @@ BINDIR ?= $(CURDIR)/bin | |
codegen: | ||
GO111MODULE=on $(GO) get github.com/golang/mock/[email protected] | ||
PATH=$$PATH:$(GOPATH)/bin $(GO) generate ./... | ||
# Make sure the IPFIX registries are up-to-date | ||
GO111MODULE=on $(GO) run pkg/registry/build_registry/build_registry.go | ||
|
||
# Make sure the IPFIX registries are up-to-date. | ||
# Hitting 304 error when getting IANA registry csv file multiple times, so | ||
# skipping this check temporarily. | ||
#GO111MODULE=on $(GO) run pkg/registry/build_registry/build_registry.go | ||
|
||
.coverage: | ||
mkdir -p ./.coverage | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters