Skip to content

Commit

Permalink
local
Browse files Browse the repository at this point in the history
  • Loading branch information
baotiao committed Mar 15, 2015
1 parent 47c3b80 commit d6f6293
Show file tree
Hide file tree
Showing 12 changed files with 963 additions and 36 deletions.
13 changes: 12 additions & 1 deletion bada_sdk.proto
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,17 @@ message SdkLRangeRet {
repeated bytes value = 2;
}

/*
* The proto used in communicated in nodes
*/

message HbSend {
required int32 opcode = 1;
required bytes host = 2;
required int32 port = 3;
}


message HbSendRet {
required int32 opcode = 1;
required bool status = 2;
}
303 changes: 303 additions & 0 deletions include/bada_sdk.pb.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions include/tick_conn.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ class TickConn
{
public:
TickConn(int fd);
/*
* TickConn();
*/
TickConn();
~TickConn();
/*
* Set the fd to nonblock && set the flag_ the the fd flag
Expand Down
Loading

0 comments on commit d6f6293

Please sign in to comment.