chore(Core/Shared): restyle shared lib with astyle (#3462)

This commit is contained in:
Kargatum
2020-09-11 11:50:48 +07:00
committed by GitHub
parent d47d6d34f3
commit 8b3621779e
10 changed files with 184 additions and 182 deletions

View File

@@ -35,17 +35,17 @@ public:
virtual ~RealmSocket(void);
size_t recv_len(void) const;
bool recv_soft(char *buf, size_t len);
bool recv(char *buf, size_t len);
bool recv_soft(char* buf, size_t len);
bool recv(char* buf, size_t len);
void recv_skip(size_t len);
bool send(const char *buf, size_t len);
bool send(const char* buf, size_t len);
const std::string& getRemoteAddress(void) const;
uint16 getRemotePort(void) const;
virtual int open(void *);
virtual int open(void*);
virtual int close(u_long);
@@ -57,7 +57,7 @@ public:
void set_session(Session* session);
private:
ssize_t noblk_send(ACE_Message_Block &message_block);
ssize_t noblk_send(ACE_Message_Block& message_block);
ACE_Message_Block input_buffer_;
Session* session_;