Gitiles
Code Review
Sign In
gerrit.named-data.net
/
ChronoChat
/
5a8d5aaca17f1a362303fa54f5c8f494e021d638
/
.
/
chatbuf.proto
blob: 234c9311cf77a6087244dd58479aeb78233cba53 [
file
] [
log
] [
blame
]
package
SyncDemo
;
message
ChatMessage
{
optional
string
msgData
=
1
;
required
string
to
=
2
;
required
string
from
=
3
;
optional
int32
timestamp
=
4
;
enum
ChatMessageType
{
CHAT
=
0
;
HELLO
=
1
;
OTHER
=
2
;
}
required
ChatMessageType
type
=
5
;
}