summaryrefslogtreecommitdiff
path: root/httpclient.h
diff options
context:
space:
mode:
Diffstat (limited to 'httpclient.h')
-rw-r--r--httpclient.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/httpclient.h b/httpclient.h
index b5a39ea..000eaa8 100644
--- a/httpclient.h
+++ b/httpclient.h
@@ -87,4 +87,26 @@ class cHttpYtPushClient : public cHttpClientBase {
};
+class cHttpCfgPushClient : public cHttpClientBase {
+ public:
+ cHttpCfgPushClient(int, int, int, SmartTvServer*, string peer);
+ virtual ~cHttpCfgPushClient();
+
+ protected:
+ string getMsgBody(int );
+
+ string mServerAddress;
+};
+
+class cHttpInfoClient : public cHttpClientBase {
+ public:
+ cHttpInfoClient(int, int, int, SmartTvServer*, string peer, string body);
+ virtual ~cHttpInfoClient();
+
+ protected:
+ string getMsgBody(int );
+
+ string mBody;
+};
+
#endif