Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ipaaca
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ramin Yaghoubzadeh Torky
ipaaca
Commits
ea922c89
Commit
ea922c89
authored
13 years ago
by
Ramin Yaghoubzadeh
Browse files
Options
Downloads
Patches
Plain Diff
Protocol file enhanced with links and link event types.
parent
5b4d7698
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/ipaaca.proto
+22
-4
22 additions, 4 deletions
proto/ipaaca.proto
with
22 additions
and
4 deletions
proto/ipaaca.proto
+
22
−
4
View file @
ea922c89
...
...
@@ -5,6 +5,11 @@ message IntMessage {
required
sint32
value
=
1
;
}
message
LinkSet
{
required
string
type
=
1
;
repeated
string
targets
=
2
;
}
message
PayloadItem
{
required
string
key
=
1
;
required
string
value
=
2
;
...
...
@@ -27,7 +32,8 @@ message IU {
required
AccessMode
access_mode
=
7
[
default
=
PUSH
];
required
bool
read_only
=
8
[
default
=
false
];
repeated
PayloadItem
payload
=
9
;
};
repeated
LinkSet
links
=
10
;
}
message
IUPayloadUpdate
{
required
string
uid
=
1
;
...
...
@@ -36,17 +42,29 @@ message IUPayloadUpdate {
repeated
string
keys_to_remove
=
4
;
required
bool
is_delta
=
5
[
default
=
false
];
required
string
writer_name
=
6
;
}
;
}
message
IURetraction
{
required
string
uid
=
1
;
required
uint32
revision
=
2
;
}
;
}
message
IUCommission
{
required
string
uid
=
1
;
required
uint32
revision
=
2
;
required
string
writer_name
=
3
;
};
}
message
IUConnection
{
required
string
source
=
1
;
required
string
target
=
2
;
required
string
type
=
3
;
}
message
IUDisconnection
{
required
string
source
=
1
;
required
string
target
=
2
;
required
string
type
=
3
;
}
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