hueplusplus  1.0.0
LinHttpHandler.h
Go to the documentation of this file.
1 
23 #ifndef INCLUDE_HUEPLUSPLUS_LINHTTPHANDLER_H
24 #define INCLUDE_HUEPLUSPLUS_LINHTTPHANDLER_H
25 
26 #include <string>
27 #include <vector>
28 
29 #include "BaseHttpHandler.h"
30 
31 #include "json/json.hpp"
32 
33 namespace hueplusplus
34 {
37 {
38 public:
47  virtual std::string send(const std::string& msg, const std::string& adr, int port = 80) const override;
48 
58  std::vector<std::string> sendMulticast(const std::string& msg, const std::string& adr = "239.255.255.250",
59  int port = 1900, std::chrono::steady_clock::duration timeout = std::chrono::seconds(5)) const override;
60 };
61 } // namespace hueplusplus
62 
63 #endif
Namespace for the hueplusplus library.
Definition: Action.h:27
std::vector< std::string > sendMulticast(const std::string &msg, const std::string &adr="239.255.255.250", int port=1900, std::chrono::steady_clock::duration timeout=std::chrono::seconds(5)) const override
Function that sends a multicast request with the specified message.
Definition: LinHttpHandler.cpp:141
virtual std::string send(const std::string &msg, const std::string &adr, int port=80) const override
Function that sends a given message to the specified host and returns the response.
Definition: LinHttpHandler.cpp:53
Class to handle http requests and multicast requests on linux systems.
Definition: LinHttpHandler.h:36
Base class for classes that handle http requests and multicast requests.
Definition: BaseHttpHandler.h:38