]> git.stg.codes - stg.git/blobdiff - stglibs/srvconf.lib/parsers/auth_by.cpp
Merge branch 'stg-2.409-radius'
[stg.git] / stglibs / srvconf.lib / parsers / auth_by.cpp
index 34e490ca0f3b90736398c0694b89e657b8bf2c1e..143eee261dae838b82740716eead98999ffa5c0f 100644 (file)
  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
  */
 
-#include "parser_auth_by.h"
-
-#include <cstddef>
+#include "auth_by.h"
 
 #include <strings.h> // strcasecmp
 
 using namespace STG;
 
-AUTH_BY::PARSER::PARSER()
-    : callback(NULL),
-      data(NULL),
+AUTH_BY::PARSER::PARSER(CALLBACK f, void * d, const std::string & e)
+    : callback(f),
+      data(d),
+      encoding(e),
       depth(0),
       parsingAnswer(false)
 {
@@ -79,9 +78,3 @@ if (depth == 0)
     error.clear();
     }
 }
-//-----------------------------------------------------------------------------
-void AUTH_BY::PARSER::SetCallback(CALLBACK f, void * d)
-{
-callback = f;
-data = d;
-}