mirror of https://github.com/deavminet/libdnet.git
Added basic structure for AccountCommand
This commit is contained in:
parent
5ebec59c39
commit
e60f626dcb
|
@ -24,7 +24,26 @@ message DNETMessage
|
||||||
bytes content = 2;
|
bytes content = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AccountMessage
|
||||||
|
//
|
||||||
|
// These represents account control messages for things
|
||||||
|
// such as account management, authentication, profile
|
||||||
|
// manipulation etc.
|
||||||
|
message AccountCommand
|
||||||
|
{
|
||||||
|
enum MessageType
|
||||||
|
{
|
||||||
|
AUTH = 0;
|
||||||
|
REGISTRATION = 1;
|
||||||
|
DEREG = 2;
|
||||||
|
GET_PROFILE_PROPS = 3;
|
||||||
|
SET_PROFILE_PROP = 4;
|
||||||
|
GET_PROFILE_PROP = 5;
|
||||||
|
}
|
||||||
|
|
||||||
|
// The type of the account command
|
||||||
|
MessageType type = 1;
|
||||||
|
}
|
||||||
|
|
||||||
// ChannelMessage
|
// ChannelMessage
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue