* Author : Maxim Mamontov <faust@stargazer.dp.ua>
*/
-/*
- * Header file for client part of data access via Stargazer for RADIUS
- *
- * $Revision: 1.4 $
- * $Date: 2010/04/16 12:30:02 $
- *
- */
+#ifndef __STG_RLM_CLIENT_H__
+#define __STG_RLM_CLIENT_H__
-#ifndef STG_CLIENT_H
-#define STG_CLIENT_H
+#include "types.h"
-#include <string>
+#include "stg/os_int.h"
-#include <netinet/in.h>
-#include <arpa/inet.h>
-#include <sys/socket.h> // socklen_t
+#include <boost/scoped_ptr.hpp>
-#include "stg/blowfish.h"
-#include "stg/rad_packets.h"
+#include <string>
-typedef std::vector<std::pair<std::string, std::string> > PAIRS;
+namespace STG
+{
+namespace RLM
+{
-class STG_CLIENT
+class Client
{
public:
- STG_CLIENT(const std::string & host, uint16_t port, const std::string & password);
- ~STG_CLIENT();
+ Client(const std::string& address);
+ ~Client();
- static STG_CLIENT* get();
- static void configure(const std::string& server, uint16_t port, const std::string& password);
+ bool stop();
- PAIRS authorize(const PAIRS& pairs);
- PAIRS authenticate(const PAIRS& pairs);
- PAIRS postAuth(const PAIRS& pairs);
- PAIRS preAcct(const PAIRS& pairs);
- PAIRS account(const PAIRS& pairs);
+ static Client* get();
+ static bool configure(const std::string& address);
+
+ RESULT request(REQUEST_TYPE type, const std::string& userName, const std::string& password, const PAIRS& pairs);
private:
+ class Impl;
+ boost::scoped_ptr<Impl> m_impl;
};
+} // namespace RLM
+} // namespace STG
+
#endif