diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2020-11-27 01:37:01 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2020-11-27 01:37:01 -0500 |
commit | ae77bfd1d1df50d8159e50fee4f7c5616cffe1b8 (patch) | |
tree | 4c1ac7be700ea46432ede85a0d128394e3b31b45 /discord/websocket.hpp | |
parent | 1463d8da9e1b4c49021e6fa75795e2cd054b6227 (diff) | |
download | abaddon-portaudio-ae77bfd1d1df50d8159e50fee4f7c5616cffe1b8.tar.gz abaddon-portaudio-ae77bfd1d1df50d8159e50fee4f7c5616cffe1b8.zip |
set user-agent through ini
Diffstat (limited to 'discord/websocket.hpp')
-rw-r--r-- | discord/websocket.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/discord/websocket.hpp b/discord/websocket.hpp index ed6317a..e6a6489 100644 --- a/discord/websocket.hpp +++ b/discord/websocket.hpp @@ -11,6 +11,8 @@ public: Websocket(); void StartConnection(std::string url); + void SetUserAgent(std::string agent); + void Send(const std::string &str); void Send(const nlohmann::json &j); void Stop(); @@ -21,6 +23,7 @@ private: void OnMessage(const ix::WebSocketMessagePtr &msg); ix::WebSocket m_websocket; + std::string m_agent; public: typedef sigc::signal<void> type_signal_open; |