|
@@ -40,16 +40,16 @@ void session::on_connect(const boost::system::error_code error) {
|
|
// We've connected to the server! WOOT WOOT!
|
|
// We've connected to the server! WOOT WOOT!
|
|
if (!error) {
|
|
if (!error) {
|
|
std::cout << "Connected to server!" << std::endl;
|
|
std::cout << "Connected to server!" << std::endl;
|
|
- do_write("Connected...\n\r");
|
|
|
|
|
|
+ to_client("Connected...\n\r");
|
|
connected = true;
|
|
connected = true;
|
|
if (rlogin_auth[0] != 0) {
|
|
if (rlogin_auth[0] != 0) {
|
|
// Ok, the rlogin information was junk --
|
|
// Ok, the rlogin information was junk --
|
|
- do_write("Let me make up some fake rlogin data for you...\n\r");
|
|
|
|
|
|
+ to_client("Let me make up some fake rlogin data for you...\n\r");
|
|
char temp[] = "\0test\0test\0terminal/9600\0";
|
|
char temp[] = "\0test\0test\0terminal/9600\0";
|
|
std::string tmp(temp, sizeof(temp));
|
|
std::string tmp(temp, sizeof(temp));
|
|
- server_write(tmp);
|
|
|
|
|
|
+ to_server(tmp);
|
|
} else {
|
|
} else {
|
|
- server_write(rlogin_auth);
|
|
|
|
|
|
+ to_server(rlogin_auth);
|
|
}
|
|
}
|
|
|
|
|
|
server_read();
|
|
server_read();
|
|
@@ -60,7 +60,7 @@ void session::on_connect(const boost::system::error_code error) {
|
|
output += " : ";
|
|
output += " : ";
|
|
output += port;
|
|
output += port;
|
|
output += "\n\r";
|
|
output += "\n\r";
|
|
- do_write(output);
|
|
|
|
|
|
+ to_client(output);
|
|
|
|
|
|
std::cout << "Failed to connect to server." << std::endl;
|
|
std::cout << "Failed to connect to server." << std::endl;
|
|
std::cout << "SHUTDOWN..." << std::endl;
|
|
std::cout << "SHUTDOWN..." << std::endl;
|
|
@@ -80,7 +80,7 @@ void session::process_lines(void) {
|
|
while ((pos = server_prompt.find("\n\r")) != std::string::npos) {
|
|
while ((pos = server_prompt.find("\n\r")) != std::string::npos) {
|
|
// line
|
|
// line
|
|
std::string line = server_prompt.substr(0, pos + 2);
|
|
std::string line = server_prompt.substr(0, pos + 2);
|
|
- server_prompt = server_prompt.substr(pos + 2);
|
|
|
|
|
|
+ server_prompt = server_prompt.substr(pos + 2);
|
|
|
|
|
|
// Remove \n\r for dispatching
|
|
// Remove \n\r for dispatching
|
|
std::string part = line.substr(0, pos);
|
|
std::string part = line.substr(0, pos);
|
|
@@ -89,19 +89,23 @@ void session::process_lines(void) {
|
|
server_sent = 0;
|
|
server_sent = 0;
|
|
};
|
|
};
|
|
// display on?
|
|
// display on?
|
|
- do_write(line);
|
|
|
|
|
|
+ to_client(line);
|
|
|
|
|
|
dispatch_line(part);
|
|
dispatch_line(part);
|
|
}
|
|
}
|
|
|
|
|
|
// display on?
|
|
// display on?
|
|
if (server_sent != 0) {
|
|
if (server_sent != 0) {
|
|
- std::string part = server_prompt.substr(server_sent);
|
|
|
|
- do_write(part);
|
|
|
|
- server_sent = server_prompt.size();
|
|
|
|
|
|
+ // send partial
|
|
|
|
+ std::string part = server_prompt.substr(server_sent);
|
|
|
|
+ to_client(part);
|
|
|
|
+ server_sent = server_prompt.size();
|
|
} else {
|
|
} else {
|
|
- do_write(server_prompt);
|
|
|
|
|
|
+ // send all
|
|
|
|
+ if (!server_prompt.empty()) {
|
|
|
|
+ to_client(server_prompt);
|
|
server_sent = server_prompt.size();
|
|
server_sent = server_prompt.size();
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
// server_sent is the # of chars we've already sent of this.
|
|
// server_sent is the # of chars we've already sent of this.
|
|
@@ -119,13 +123,13 @@ void session::server_read(void) {
|
|
server_prompt.append(server_buffer, length);
|
|
server_prompt.append(server_buffer, length);
|
|
process_lines();
|
|
process_lines();
|
|
|
|
|
|
- /*
|
|
|
|
- if (length) {
|
|
|
|
- // std::cout << length << std::endl;
|
|
|
|
- std::cout << "S: " << server_buffer << std::endl;
|
|
|
|
- do_write(server_buffer);
|
|
|
|
- }
|
|
|
|
- */
|
|
|
|
|
|
+ /*
|
|
|
|
+ if (length) {
|
|
|
|
+ // std::cout << length << std::endl;
|
|
|
|
+ std::cout << "S: " << server_buffer << std::endl;
|
|
|
|
+ do_write(server_buffer);
|
|
|
|
+ }
|
|
|
|
+ */
|
|
|
|
|
|
server_read();
|
|
server_read();
|
|
} else {
|
|
} else {
|
|
@@ -156,7 +160,7 @@ void session::on_resolve(
|
|
std::string output = "Unable to resolve: ";
|
|
std::string output = "Unable to resolve: ";
|
|
output += host;
|
|
output += host;
|
|
output += "\n\r";
|
|
output += "\n\r";
|
|
- do_write(output);
|
|
|
|
|
|
+ to_client(output);
|
|
std::cout << "Unable to resolve?" << std::endl;
|
|
std::cout << "Unable to resolve?" << std::endl;
|
|
std::cout << "SHUTDOWN ..." << std::endl;
|
|
std::cout << "SHUTDOWN ..." << std::endl;
|
|
socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
|
|
socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
|
|
@@ -178,11 +182,11 @@ void session::do_read(void) {
|
|
|
|
|
|
// parse authentication information
|
|
// parse authentication information
|
|
parse_auth();
|
|
parse_auth();
|
|
- do_write(std::string(1, 0));
|
|
|
|
|
|
+ to_client(std::string(1, 0));
|
|
|
|
|
|
- do_write("Welcome, ");
|
|
|
|
- do_write(rlogin_name);
|
|
|
|
- do_write("\n\r");
|
|
|
|
|
|
+ to_client("Welcome, ");
|
|
|
|
+ to_client(rlogin_name);
|
|
|
|
+ to_client("\n\r");
|
|
|
|
|
|
// Activate the connection to the server
|
|
// Activate the connection to the server
|
|
|
|
|
|
@@ -200,7 +204,7 @@ void session::do_read(void) {
|
|
|
|
|
|
} else if (length) {
|
|
} else if (length) {
|
|
// std::cout << length << std::endl;
|
|
// std::cout << length << std::endl;
|
|
- server_write(read_buffer);
|
|
|
|
|
|
+ to_server(read_buffer);
|
|
std::cout << "C: " << read_buffer << std::endl;
|
|
std::cout << "C: " << read_buffer << std::endl;
|
|
// do_write(output);
|
|
// do_write(output);
|
|
}
|
|
}
|
|
@@ -215,7 +219,7 @@ void session::do_read(void) {
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
-void session::do_write(std::string message) {
|
|
|
|
|
|
+void session::to_client(std::string message) {
|
|
auto self(shared_from_this());
|
|
auto self(shared_from_this());
|
|
boost::asio::async_write(
|
|
boost::asio::async_write(
|
|
socket_, boost::asio::buffer(message),
|
|
socket_, boost::asio::buffer(message),
|
|
@@ -231,7 +235,7 @@ void session::do_write(std::string message) {
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
-void session::server_write(std::string message) {
|
|
|
|
|
|
+void session::to_server(std::string message) {
|
|
auto self(shared_from_this());
|
|
auto self(shared_from_this());
|
|
boost::asio::async_write(
|
|
boost::asio::async_write(
|
|
server_, boost::asio::buffer(message),
|
|
server_, boost::asio::buffer(message),
|
|
@@ -250,3 +254,30 @@ void session::server_write(std::string message) {
|
|
void session::on_shutdown(boost::system::error_code ec) {
|
|
void session::on_shutdown(boost::system::error_code ec) {
|
|
std::cout << "shutdown." << std::endl;
|
|
std::cout << "shutdown." << std::endl;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+server::server(boost::asio::io_service &io_service,
|
|
|
|
+ const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
|
|
|
|
+ std::string port)
|
|
|
|
+ : io_service_{io_service}, acceptor_{io_service_, endpoint}, host_{host},
|
|
|
|
+ port_{port} {
|
|
|
|
+ do_accept();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * setup async connect accept
|
|
|
|
+ *
|
|
|
|
+ * This creates a session for each connection. Using make_shared allows the
|
|
|
|
+ * session to automatically clean up when it is no longer active/has anything
|
|
|
|
+ * running in the reactor.
|
|
|
|
+ */
|
|
|
|
+void server::do_accept(void) {
|
|
|
|
+ acceptor_.async_accept([this](boost::system::error_code ec,
|
|
|
|
+ boost::asio::ip::tcp::socket socket) {
|
|
|
|
+ if (!ec) {
|
|
|
|
+ std::make_shared<session>(std::move(socket), io_service_, host_, port_)
|
|
|
|
+ ->start();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ do_accept();
|
|
|
|
+ });
|
|
|
|
+}
|