Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
goSDN Northbound
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
danet
goSDN Northbound
Commits
aaad71d8
Commit
aaad71d8
authored
3 years ago
by
Fabian Helm
Browse files
Options
Downloads
Patches
Plain Diff
Removed useless setters and added repeated in listsetters
parent
5a6dd4fc
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
proto/gosdn/pnd/v1alpha/pnd.proto
+4
-26
4 additions, 26 deletions
proto/gosdn/pnd/v1alpha/pnd.proto
with
4 additions
and
26 deletions
proto/gosdn/pnd/v1alpha/pnd.proto
+
4
−
26
View file @
aaad71d8
...
...
@@ -90,7 +90,7 @@ service PndService {
get
:
"/v1/pnds/{pid}/onds/{did}/paths/{path}"
};
}
rpc
SetPath
(
SetPathRequest
)
returns
(
SetPathResponse
)
{
rpc
SetPath
List
(
SetPath
List
Request
)
returns
(
SetPath
List
Response
)
{
option
(
google.api.http
)
=
{
post
:
"/v1/pnds/{pid}/onds/{did}/paths"
body
:
"*"
...
...
@@ -229,43 +229,25 @@ message Change {
State
state
=
3
;
}
message
SetOndRequest
{
int64
timestamp
=
1
;
// Timestamp in nanoseconds since Epoch.
SetOnd
ond
=
2
;
string
pid
=
3
;
}
message
SetOndListRequest
{
int64
timestamp
=
1
;
// Timestamp in nanoseconds since Epoch.
repeated
SetOnd
ond
=
2
;
string
pid
=
3
;
}
message
SetSbiRequest
{
int64
timestamp
=
1
;
// Timestamp in nanoseconds since Epoch.
SetSbi
sbi
=
2
;
string
pid
=
3
;
}
message
SetSbiListRequest
{
int64
timestamp
=
1
;
// Timestamp in nanoseconds since Epoch.
repeated
SetSbi
sbi
=
2
;
string
pid
=
3
;
}
message
SetChangeRequest
{
int64
timestamp
=
1
;
// Timestamp in nanoseconds since Epoch.
SetChange
change
=
2
;
string
pid
=
3
;
}
message
SetChangeListRequest
{
int64
timestamp
=
1
;
// Timestamp in nanoseconds since Epoch.
repeated
SetChange
change
=
2
;
string
pid
=
3
;
}
message
SetPathRequest
{
message
SetPath
List
Request
{
int64
timestamp
=
1
;
// Timestamp in nanoseconds since Epoch.
repeated
ChangeRequest
change_request
=
2
;
string
did
=
3
;
...
...
@@ -311,11 +293,6 @@ message SetResponse{
Status
status
=
2
;
}
message
SetOndResponse
{
int64
timestamp
=
1
;
// Timestamp in nanoseconds since Epoch.
Status
status
=
2
;
}
message
SetOndListResponse
{
int64
timestamp
=
1
;
// Timestamp in nanoseconds since Epoch.
Status
status
=
2
;
...
...
@@ -339,9 +316,10 @@ message SetSbiListResponse{
repeated
SetResponse
responses
=
3
;
}
message
SetPathResponse
{
message
SetPath
List
Response
{
int64
timestamp
=
1
;
// Timestamp in nanoseconds since Epoch.
Status
status
=
2
;
repeated
SetResponse
responses
=
3
;
}
message
DeletePndRequest
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment