ws connect command has a new option to send in binary mode (still default to text)

This commit is contained in:
Benjamin Sergeant
2019-07-25 15:48:45 -07:00
parent c300866dcc
commit fc4068f2e5
5 changed files with 30 additions and 9 deletions

View File

@ -32,7 +32,8 @@ namespace ix
int ws_connect_main(const std::string& url,
bool disableAutomaticReconnection,
bool disablePerMessageDeflate);
bool disablePerMessageDeflate,
bool binaryMode);
int ws_receive_main(const std::string& url, bool enablePerMessageDeflate, int delayMs);