-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Repurposed for flow reconciliation library (#21)
* Preparing to repurpose this repo for data plane reconciliation library * Defined a high-level sketch of the library interfaces * Added a few more details to provide P4Info, etc. * Added a sketch of the store tier * Added minor clarification comment
- Loading branch information
Showing
27 changed files
with
537 additions
and
1,337 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 |
---|---|---|
@@ -1,18 +1,37 @@ | ||
# SPDX-FileCopyrightText: 2020-present Open Networking Foundation <[email protected]> | ||
# SPDX-FileCopyrightText: 2019-present Open Networking Foundation <[email protected]> | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
run: | ||
# Autogenerated files take too much time and memory to load, | ||
# even if we skip them with -skip-dirs or -skip-dirs; | ||
# or mark them as generated; or use nolint annotations. | ||
# So we define this tag and use it in the autogenerated files. | ||
build-tags: | ||
- codeanalysis | ||
|
||
linters: | ||
enable: | ||
- gofmt | ||
- gocyclo | ||
- golint | ||
- revive | ||
- misspell | ||
- typecheck | ||
- errcheck | ||
- dogsled | ||
- unconvert | ||
- nakedret | ||
- exportloopref | ||
|
||
issues: | ||
exclude-use-default: false | ||
exclude: | ||
- Error return value of `.*Close` is not checked | ||
- Error return value of `.*Flush` is not checked | ||
- Error return value of `.*Write` is not checked | ||
- Error return value of `.*Stop` is not checked | ||
exclude-rules: | ||
- path: pkg | ||
linters: | ||
- staticcheck | ||
text: "SA1019:" | ||
|
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,13 +1,23 @@ | ||
module github.com/onosproject/onos-control | ||
|
||
go 1.13 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/golang/protobuf v1.3.1 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/onosproject/onos-config v0.0.0-20190715180819-079d3a8dc433 | ||
github.com/spf13/cobra v0.0.5 | ||
github.com/spf13/viper v1.4.0 | ||
google.golang.org/grpc v1.22.0 | ||
k8s.io/klog v0.3.3 | ||
github.com/atomix/go-sdk v0.10.0 | ||
github.com/onosproject/onos-api/go v0.10.21 | ||
github.com/p4lang/p4runtime v1.3.0 | ||
) | ||
|
||
require ( | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/mock v1.6.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/go-cmp v0.5.7 // indirect | ||
golang.org/x/net v0.0.0-20220412020605-290c469a71a5 // indirect | ||
golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect | ||
google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac // indirect | ||
google.golang.org/grpc v1.46.0 // indirect | ||
google.golang.org/protobuf v1.28.0 // indirect | ||
) |
Oops, something went wrong.