#include <arpa/inet.h>
#include <sys/socket.h> // socklen_t
-#include "blowfish.h"
-#include "rad_packets.h"
+#include "stg/blowfish.h"
+#include "stg/rad_packets.h"
class STG_CLIENT
{
STG_CLIENT(const std::string & host, uint16_t port, uint16_t lp, const std::string & pass);
~STG_CLIENT();
- int Start();
- int Stop();
-
std::string GetUserPassword() const;
int Authorize(const std::string & login, const std::string & svc);
int PrepareNet();
- void InitEncrypt();
- void Encrypt(char * dst, const char * src, int len8);
- void Decrypt(char * dst, const char * src, int len8);
-
int Request(RAD_PACKET * packet, const std::string & login, const std::string & svc, uint8_t packetType);
int RecvData(RAD_PACKET * packet);