|
@@ -14,28 +14,8 @@
|
|
|
#include <cstdlib>
|
|
|
#include <iostream>
|
|
|
|
|
|
-// #include <boost/json.hpp>
|
|
|
-// #include <boost/json/src.hpp>
|
|
|
-
|
|
|
-// <boost/json.hpp>
|
|
|
-#ifdef WORKING_JSON
|
|
|
-json::value parse_file(char const *filename) {
|
|
|
- file f(filename, "r");
|
|
|
- json::stream_parser p;
|
|
|
- json::error_code ec;
|
|
|
- do {
|
|
|
- char buf[4096];
|
|
|
- auto const nread = f.read(buf, sizeof(buf));
|
|
|
- p.write(buf, nread, ec);
|
|
|
- } while (!f.eof());
|
|
|
- if (ec)
|
|
|
- return nullptr;
|
|
|
- p.finish(ec);
|
|
|
- if (ec)
|
|
|
- return nullptr;
|
|
|
- return p.release();
|
|
|
-}
|
|
|
-#endif
|
|
|
+#include "config.h"
|
|
|
+
|
|
|
|
|
|
class session : public std::enable_shared_from_this<session> {
|
|
|
public:
|
|
@@ -53,10 +33,15 @@ public:
|
|
|
}
|
|
|
|
|
|
~session() { std::cout << "~session" << std::endl; }
|
|
|
+
|
|
|
void parse_auth(void) {
|
|
|
// how many nulls should I be seeing?
|
|
|
// \0user\0pass\0terminal/SPEED\0
|
|
|
// Maybe in the future I'll care about parsing this out. I don't right now.
|
|
|
+
|
|
|
+ // Ok, yes I do! If I don't have a proper rlogin value here, it isn't going
|
|
|
+ // to work when I try to connect to the rlogin server.
|
|
|
+
|
|
|
if (rlogin_auth.size() > 10)
|
|
|
rlogin_name = rlogin_auth.c_str() + 1;
|
|
|
else
|
|
@@ -70,7 +55,7 @@ public:
|
|
|
|
|
|
if (!error) {
|
|
|
for (boost::asio::ip::tcp::endpoint const &endpoint : results) {
|
|
|
- std::cout << "GOT: " << endpoint << "\n";
|
|
|
+ std::cout << "GOT: " << endpoint << "\n";
|
|
|
}
|
|
|
} else {
|
|
|
std::cout << "Unable to resolve?" << std::endl;
|
|
@@ -170,7 +155,8 @@ private:
|
|
|
boost::asio::ip::tcp::socket socket_;
|
|
|
boost::asio::io_service &io_service_;
|
|
|
boost::asio::ip::tcp::resolver resolver_;
|
|
|
-
|
|
|
+ boost::asio::ip::tcp::socket server_;
|
|
|
+
|
|
|
// std::string read_buffer;
|
|
|
char read_buffer[1024];
|
|
|
std::string rlogin_auth;
|
|
@@ -179,6 +165,14 @@ private:
|
|
|
std::string port;
|
|
|
};
|
|
|
|
|
|
+/*
|
|
|
+maybe move the resolver part to the server, so I don't need io_service?
|
|
|
+
|
|
|
+I'm not sure what the socket connection part is going to need just yet,
|
|
|
+so I probably won't move that just yet. [NNY!]
|
|
|
+
|
|
|
+*/
|
|
|
+
|
|
|
class server {
|
|
|
|
|
|
public:
|
|
@@ -216,16 +210,33 @@ int main(int argc, char *argv[]) {
|
|
|
return EXIT_FAILURE;
|
|
|
}
|
|
|
|
|
|
+ std::map<std::string, std::string> config = yaml_parse(argv[1]);
|
|
|
+
|
|
|
+ /*
|
|
|
try {
|
|
|
// Parse the file as JSON
|
|
|
- // config = parse_file( argv[1] );
|
|
|
+ config = yaml_parse( argv[1] );
|
|
|
|
|
|
} catch (std::exception const &e) {
|
|
|
std::cerr << "Caught exception: " << e.what() << std::endl;
|
|
|
return EXIT_FAILURE;
|
|
|
}
|
|
|
+ */
|
|
|
+
|
|
|
+ bool config_ok = true;
|
|
|
+
|
|
|
+ for (const char *key : {"server", "host", "port"}) {
|
|
|
+ auto pos = config.find(key);
|
|
|
+ if (pos == config.end()) {
|
|
|
+ config_ok = false;
|
|
|
+ std::cout << "Config file missing: " << key << std::endl;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (!config_ok)
|
|
|
+ return 2;
|
|
|
|
|
|
- int port = 9999; // 2002;
|
|
|
+ int port = std::stoi(config["server"]);
|
|
|
+ // int port = 9999; // 2002;
|
|
|
|
|
|
try {
|
|
|
|
|
@@ -234,7 +245,8 @@ int main(int argc, char *argv[]) {
|
|
|
boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(),
|
|
|
port); // std::atoi(argv[i]));
|
|
|
// connect to the BBS
|
|
|
- server s(io_service, endpoint, "127.0.0.1", "2023");
|
|
|
+ server s(io_service, endpoint, config["host"], config["port"]);
|
|
|
+ //"127.0.0.1", "2023");
|
|
|
|
|
|
io_service.run();
|
|
|
} catch (std::exception &e) {
|