hueplusplus 1.2.0
Loading...
Searching...
No Matches
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 <nlohmann/json.hpp>
32
33namespace hueplusplus
34{
37{
38public:
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
Base class for classes that handle http requests and multicast requests.
Definition BaseHttpHandler.h:39
Class to handle http requests and multicast requests on linux systems.
Definition LinHttpHandler.h:37
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
Namespace for the hueplusplus library.
Definition Action.h:28