MAXIMUM OVERDRIVE

This commit is contained in:
Wirlaburla 2023-10-04 02:31:22 -05:00
parent cf27df253a
commit 74d14372ec
16 changed files with 285 additions and 234 deletions

View File

@ -1,7 +0,0 @@
hey pengo
hey p3ng0
p3ng0
yo pengo
yo p3ng0
hello p3ng0
aloha p3ng0

View File

@ -1,5 +1,12 @@
# This is the configuration file for PengoBot. # This is the configuration file for PengoBot.
# Handles every message group.
messages=conf/messages.list
# Handles single messages to single phrases.
replyfile=conf/replies.conf
# Handles worlds and their names.
worldfile=conf/worldlist.conf
# The username you log in as. Account must be registered on worlds servers. # The username you log in as. Account must be registered on worlds servers.
username=Clem username=Clem
@ -15,6 +22,9 @@ help_url=
# Bot avatar. Must be VIP for articulated to show up. # Bot avatar. Must be VIP for articulated to show up.
avatar=http://files.worlio.com/users/wirlaburla/avatars/pengobot.mov avatar=http://files.worlio.com/users/wirlaburla/avatars/pengobot.mov
# Room to appear in.
room=GroundZero#Reception<dimension-1>
# The position in the world that the bot will sit. # The position in the world that the bot will sit.
xpos=0 xpos=0
ypos=0 ypos=0
@ -28,21 +38,17 @@ spin=0
katime=5 katime=5
# The time between random messages. The wait period is between minRandomMsgTime and maxRandomMsgTime. Setting these to 0 will disable. # The time between random messages. The wait period is between minRandomMsgTime and maxRandomMsgTime. Setting these to 0 will disable.
msg_random=conf/randoms.messages
minRandomMsgTime=300 minRandomMsgTime=300
maxRandomMsgTime=900 maxRandomMsgTime=900
# Local database of worlds and their names. # Here are all single-definition messages. For anything that isn't picked in a list, it's here.
msg_whereis=conf/whereis.messages help_msg=You can find more information here: %s
worldfile=conf/worlds.conf coinflip_msg=%s flipped %s.
help_whisper_message=%s, you have been whispered with more information.
# Simple responses to simple phrases. time_msg=It is %s.
responsefile=conf/responses.conf roll_msg=%s rolled a %i.
world_not_found_msg=Sorry, I don't know that one.
# Other responses. roomusers_msg=There are %i users in this room.
msg_attention=conf/attentions.messages conf_reload_msg=My configuration has been reloaded.
msg_startup=conf/startups.messages ping_msg=Response recieved in %ims.
msg_greet=conf/greets.messages pong_msg=Pong!
msg_goodbye=conf/goodbyes.messages
msg_unknowncmd=conf/unknowncmd.messages
msg_whoami=conf/whoami.messages

View File

@ -1 +0,0 @@
Goodbye!

View File

@ -1,9 +0,0 @@
Hi.
Hi %s.
Aloha %s.
Nice to meet you %s.
Hope all is well!
Howdy!
Salutations %s.
Acknowledged.
Add '%s' to database.

View File

@ -0,0 +1,39 @@
[startup]
Hi, I'm P3NG0, your friendly Worlds bot.
My initialization is complete.
[attention]
hey pengo
hey p3ng0
p3ng0
yo pengo
yo p3ng0
hello p3ng0
aloha p3ng0
[greets]
Hi.
Hi %s.
Aloha %s.
Nice to meet you %s.
Hope all is well!
Howdy!
Salutations %s.
Acknowledged.
Added '%s' to database.
[goodbye]
Goodbye!
[unknown]
Sorry, I don't know what you're asking.
I am unsure of your request.
ERROR: DIVISION BY ZERO
Need something?
[random]
Beep boop!
[jokes]
Why did the chicken cross the road? To escape my deadly lasers, of course!
[world]
It's right here: %s
%s
Here is your mark: %s
[whoami]
Hi, I'm P3NG0. I'm a friendly bot.
I am here to annihilate the human race.

View File

@ -1,2 +0,0 @@
kiwi
mongolia

View File

@ -1,3 +0,0 @@
Hi, I'm P3NG0, your friendly Worlds bot.
My initialization is complete.
Beep boop!

View File

@ -1,4 +0,0 @@
Sorry, I don't know what you're asking.
I am unsure of your request.
ERROR: DIVISION BY ZERO
Need something?

View File

@ -1,4 +0,0 @@
It's right here: %s
%s
Here is your mark: %s
Found it! %s

View File

@ -1,2 +0,0 @@
Hi, I'm P3NG0. I'm a friendly bot.
I am here to annihilate the human race.

119
src/acfile.h Normal file
View File

@ -0,0 +1,119 @@
#ifndef ACF_H
#define ACF_H
#include <fstream>
#include <vector>
#include <stdlib.h>
// Another Configuration File
class ACFile {
public:
ACFile() {};
ACFile(const ACFile &other) {
this->conf = other.conf;
for (auto const& c : this->conf) {
printf("processed: (%s),(%s)\n", c.first.c_str(), c.second.c_str());
}
}
ACFile(const char* path) {
std::ifstream infile(path);
std::string line;
while (std::getline(infile, line)) {
if (line.length() == 0) continue;
// Check if line is a comment line.
if (line.rfind("#", 0) != 0) {
std::string name = line.substr(0, line.find("="));
std::string value = line.substr(line.find("=")+1, line.length());
std::cout << name << ": \"" << value << "\"" << std::endl;
conf[name] = value;
}
}
}
std::map<std::string, std::string> get() {
for (auto const& c : this->conf) {
printf("info: (%s),(%s)\n", c.first.c_str(), c.second.c_str());
}
return this->conf;
}
std::vector<std::string> getKeyValues() {
std::vector<std::string> values;
for (auto const& c : conf) {
values.push_back(c.first);
}
return values;
}
std::string getValue(std::string name, std::string def) {
if (conf.find(name) != conf.end()) return conf[name];
else return def;
}
int getInt(std::string name, int def) {
if (conf.find(name) != conf.end()) return std::stoi(conf[name]);
else return def;
}
void setValue(std::string name, std::string value) {
conf[name] = value;
}
void setInt(std::string name, int value) {
conf[name] = std::to_string(value);
}
private:
std::map<std::string, std::string> conf;
};
// Another Message File
class AMFile {
public:
AMFile() {};
AMFile(const AMFile &other) {
this->messages = other.messages;
}
AMFile(const char* path) {
this->rng = std::mt19937(rd());
std::ifstream infile(path);
std::string line; std::string group;
while (std::getline(infile, line)) {
if (line.length() == 0) continue;
// Check if line is a group defining line.
if (line.rfind("[", 0) == 0) {
group = line.substr(1, line.find("]")-1);
messages[group] = {};
} else if (line.rfind("#", 0) != 0) {
if (line.rfind("\\", 0) == 0) {
line = line.substr(1, line.length());
} // For \[text] messages.
messages[group].push_back(line);
std::cout << "[" << group << "]=" << line << std::endl;
}
}
}
std::map<std::string, std::vector<std::string>> get() {
return messages;
}
std::string getMessage(std::string group) {
if (messages.find(group) == messages.end() || messages[group].size() == 0) return "";
std::uniform_int_distribution<int> rno(0,(messages[group]).size()-1);
return (messages[group])[rno(rng)];
}
std::vector<std::string> getMessages(std::string group) {
if (messages.find(group) == messages.end()) return {};
return messages[group];
}
private:
std::map<std::string, std::vector<std::string>> messages;
std::random_device rd;
std::mt19937 rng;
};
#endif

View File

@ -5,122 +5,17 @@
#include <fstream> #include <fstream>
#include <stdlib.h> #include <stdlib.h>
#include "drone.h" #include "drone.h"
#include "acfile.h"
bool debug = false; bool debug = false;
std::random_device rd; std::random_device rd;
std::mt19937 rng(rd()); std::mt19937 rng(rd());
class PengoConfig { std::string confFile = "conf/bot.conf";
public: ACFile* mainConf;
PengoConfig() { ACFile* worldlist;
std::ifstream mconf("conf/pengobot.conf"); ACFile* replylist;
AMFile* messages;
std::string line;
while (std::getline(mconf, line)) {
// Check if line is a comment line.
if (line.rfind("#", 0) != 0) {
std::string name = line.substr(0, line.find("="));
std::string value = line.substr(line.find("=")+1, line.length());
if (debug) std::cout << name << ": \"" << value << "\"" << std::endl;
conf[name] = value;
}
}
for (auto const& mc : conf) {
std::string msgName;
if ((mc.first.substr(0, mc.first.find("_"))) == "msg") {
msgName = mc.first.substr(mc.first.find("_")+1, mc.first.length());
std::ifstream msglines(mc.second);
std::string line;
std::vector<std::string> lines;
while (std::getline(msglines, line)) {
if (line.rfind("#", 0) != 0) {
lines.push_back(line);
if (debug) std::cout << msgName << "=" << line << std::endl;
}
}
messages[msgName] = lines;
}
}
if ((conf["worldfile"]).length() > 0) {
std::ifstream wrlds(conf["worldfile"]);
std::string wline;
while (std::getline(wrlds, wline)) {
if (wline.rfind("#", 0) != 0) {
std::string name = wline.substr(0, wline.find("="));
std::string value = wline.substr(wline.find("=")+1, wline.length());
if (debug) std::cout << name << ": \"" << value << "\"" << std::endl;
worlds[name] = value;
}
}
}
if ((conf["responsefile"]).length() > 0) {
std::ifstream rspn(conf["responsefile"]);
std::string rline;
while (std::getline(rspn, rline)) {
if (rline.rfind("#", 0) != 0) {
std::string name = rline.substr(0, rline.find("="));
std::string value = rline.substr(rline.find("=")+1, rline.length());
if (debug) std::cout << name << ": \"" << value << "\"" << std::endl;
responses[name] = value;
}
}
}
}
PengoConfig operator = (PengoConfig *pc) { return *pc; };
std::string getValue(std::string name, std::string def) {
if (((std::string)conf[name]).length() > 0) return conf[name];
else return def;
}
int getInt(std::string name, int def) {
if (((std::string)conf[name]).length() > 0) return std::stoi(conf[name]);
else return def;
}
void setValue(std::string name, std::string value) {
conf[name] = value;
}
void setInt(std::string name, int value) {
conf[name] = std::to_string(value);
}
std::string getMessage(std::string type) {
std::uniform_int_distribution<int> rno(0,(messages[type]).size()-1);
return (messages[type])[rno(rng)];
}
std::vector<std::string> getMessages(std::string type) {
return messages[type];
}
std::string getWorld(std::string name) {
return worlds[name];
}
std::map<std::string, std::string> getWorlds() {
return worlds;
}
std::string getReply(std::string name) {
return responses[name];
}
std::map<std::string, std::string> getResponses() {
return responses;
}
private:
std::map<std::string, std::string> conf;
std::map<std::string, std::string> worlds;
std::map<std::string, std::string> responses;
std::map<std::string, std::vector<std::string>> messages;
};
PengoConfig conf;
#define BUFFERSIZE 65535 #define BUFFERSIZE 65535

View File

@ -23,7 +23,7 @@
#include "strutils.h" #include "strutils.h"
#include "client.h" #include "client.h"
#include "verrors.h.h" #include "verrors.h"
#include "cmds.h" #include "cmds.h"
#include "props.h" #include "props.h"
@ -58,7 +58,14 @@ static char* trim(char *str) {
int main(int argc, char const* argv[]) { int main(int argc, char const* argv[]) {
// Setting config values. // Setting config values.
if (argc > 1) {
confFile = std::string(argv[1]);
printf("info: primary conf file set to \"%s\"\n", confFile.c_str());
}
loadConfig(); loadConfig();
/*for (auto const& c : mainConf->get()) {
printf("info: (%s),(%s)\n", c.first.c_str(), c.second.c_str());
}*/
autoInit(); autoInit();
while (autoOnline) { while (autoOnline) {
while (!roomOnline) {} while (!roomOnline) {}
@ -68,22 +75,25 @@ int main(int argc, char const* argv[]) {
} }
void loadConfig() { void loadConfig() {
conf = new PengoConfig(); mainConf = new ACFile(confFile.c_str());
login_username = (conf.getValue("username", "")); worldlist = new ACFile(mainConf->getValue("worldfile", "conf/worldlist.conf").c_str());
login_password = (conf.getValue("password", "")); replylist = new ACFile(mainConf->getValue("replyfile", "conf/replies.conf").c_str());
room = (conf.getValue("room", "GroundZero#Reception<dimension-1>")); messages = new AMFile(mainConf->getValue("messages", "conf/messages.list").c_str());
avatar = (conf.getValue("avatar", "avatar:pengo.mov")); login_username = mainConf->getValue("username", "");
xPos = conf.getInt("xpos", 0); login_password = mainConf->getValue("password", "");
yPos = conf.getInt("ypos", 0); room = mainConf->getValue("room", "GroundZero#Reception<dimension-1>");
zPos = conf.getInt("zpos", 0); avatar = mainConf->getValue("avatar", "avatar:pengo.mov");
direction = conf.getInt("direction", 0); xPos = mainConf->getInt("xpos", 0);
spin = conf.getInt("spin", 45); yPos = mainConf->getInt("ypos", 0);
keepAliveTime = conf.getInt("katime", 15); zPos = mainConf->getInt("zpos", 0);
debug = conf.getInt("debug", 0) == 1; direction = mainConf->getInt("direction", 0);
spin = mainConf->getInt("spin", 0);
keepAliveTime = mainConf->getInt("katime", 15);
debug = mainConf->getInt("debug", 0) == 1;
} }
int deinit(int response) { int deinit(int response) {
sendChatMessage(&roomsock, conf.getMessage("goodbye")); sendChatMessage(&roomsock, messages->getMessage("goodbye"));
if (roomOnline) sessExit(&roomsock); if (roomOnline) sessExit(&roomsock);
roomOnline = false; roomOnline = false;
if (autoOnline) sessExit(&autosock); if (autoOnline) sessExit(&autosock);
@ -148,15 +158,15 @@ void roomKeepAlive() {
} }
void autoRandMessage() { void autoRandMessage() {
int minTime = conf.getInt("minRandomMsgTime", 0); int minTime = mainConf->getInt("minRandomMsgTime", 0);
int maxTime = conf.getInt("maxRandomMsgTime", 0); int maxTime = mainConf->getInt("maxRandomMsgTime", 0);
int wait = 0; int wait = 0;
sleep(2); sleep(2);
sendChatMessage(&roomsock, conf.getMessage("startup")); sendChatMessage(&roomsock, messages->getMessage("startup"));
if (minTime != 0) { if (minTime != 0) {
while (roomOnline) { while (roomOnline) {
if (wait != 0) { if (wait != 0) {
std::string newMsg = conf.getMessage("random"); std::string newMsg = messages->getMessage("random");
if (debug) printf("debug: automsg: \"%s\"\n", newMsg.c_str()); if (debug) printf("debug: automsg: \"%s\"\n", newMsg.c_str());
sendChatMessage(&roomsock, newMsg); sendChatMessage(&roomsock, newMsg);
} }
@ -509,13 +519,11 @@ std::string getResponse(std::map<std::string, std::string> responselist, std::st
char* handleCommand(std::string from, std::string message) { char* handleCommand(std::string from, std::string message) {
char *msgout = new char[255]; char *msgout = new char[255];
if (strcontains("hi", message)) { if (strcontains("flip a coin", message)) {
snprintf(msgout, 255, conf.getMessage("greet").c_str(), from.c_str());
} else if (strcontains("flip a coin", message)) {
std::uniform_int_distribution<int> rno(0,1); std::uniform_int_distribution<int> rno(0,1);
bool heads = rno(rng) == 1; bool heads = rno(rng) == 1;
snprintf(msgout, 255, "%s", heads?"Heads":"Tails"); snprintf(msgout, 255, mainConf->getValue("coinflip_msg", "%s flipped %s.").c_str(), heads?"heads":"tails");
} else if (strcontains("time", message)) { } else if (strcontains("time", message)) {
@ -525,7 +533,7 @@ char* handleCommand(std::string from, std::string message) {
nowStream << std::put_time(localtime(&nowTime), "%A %b %d, %Y at %I:%M %p %Z"); nowStream << std::put_time(localtime(&nowTime), "%A %b %d, %Y at %I:%M %p %Z");
std::string curTime = nowStream.str(); std::string curTime = nowStream.str();
snprintf(msgout, 255, "It is %s.", curTime.c_str()); snprintf(msgout, 255, mainConf->getValue("time_msg", "It is %s.").c_str(), curTime.c_str());
} else if (strcontains("roll", message)) { } else if (strcontains("roll", message)) {
@ -540,42 +548,50 @@ char* handleCommand(std::string from, std::string message) {
dice = 6; dice = 6;
} }
std::uniform_int_distribution<int> rno(1,dice); std::uniform_int_distribution<int> rno(1,dice);
int roll = rno(rng); int roll = rno(rng);
snprintf(msgout, 255, "%s rolled a %i.", from.c_str(), roll); snprintf(msgout, 255, mainConf->getValue("roll_msg", "%s rolled a %i.").c_str(), from.c_str(), roll);
} else if (strcontains("where is", message) || strcontains("where", message) || strcontains("mark to", message) || strcontains("show me", message)) { } else if (strcontains("where is", message) || strcontains("where", message) || strcontains("mark to", message) || strcontains("show me", message)) {
std::string mark = getContainedWorld(conf.getWorlds(), message); std::string mark = getContainedWorld(worldlist->get(), message);
if (mark.length() > 0) { if (mark.length() > 0) {
snprintf(msgout, 255, conf.getMessage("whereis").c_str(), mark.c_str()); snprintf(msgout, 255, messages->getMessage("world").c_str(), mark.c_str());
} else { } else {
snprintf(msgout, 255, "Sorry! Not a clue."); snprintf(msgout, 255, mainConf->getValue("world_not_found_msg", "Sorry, I don't know that one.").c_str());
} }
} else if (strcontains("many users", message) || strcontains("whos online", message) || strcontains("who is online", message) || strcontains("many online", message)) { } else if (((strcontains("many", message) || strcontains("count", message)) && (strcontains("users", message) || strcontains("people", message))) || (strcontains("online", message) && (strcontains("who", message) || strcontains("how many", message) || strcontains("who is", message)))) {
snprintf(msgout, 255, "There are %i users in this room.", objects.size()); snprintf(msgout, 255, mainConf->getValue("roomusers_msg", "There are %i users in this room.").c_str(), objects.size());
} else if ((strcontains("joke", message) && strcontains("tell", message)) || (strcontains("make", message) && strcontains("laugh", message))) {
snprintf(msgout, 255, messages->getMessage("jokes").c_str());
} else if ((strcontains("what", message) || strcontains("who", message)) && strcontains("are you", message)) { } else if ((strcontains("what", message) || strcontains("who", message)) && strcontains("are you", message)) {
snprintf(msgout, 255, "%s", conf.getMessage("whoami").c_str()); snprintf(msgout, 255, messages->getMessage("whoami").c_str());
} else if (strcontains("shutdown", message) && from == conf.getValue("owner", "")) { } else if (strcontains("shutdown", message) && from == mainConf->getValue("owner", "")) {
exit(deinit(0)); exit(deinit(0));
} else if (strcontains("reload", message) && from == conf.getValue("owner", "")) { } else if (strcontains("reload", message) && from == mainConf->getValue("owner", "")) {
loadConfig(); loadConfig();
snprintf(msgout, 255, "My configurations have been reloaded."); snprintf(msgout, 255, mainConf->getValue("conf_reload_msg", "My configurations have been reloaded.").c_str());
} else if (strcontains(" hi", message) || strcontains("hello", message) || strcontains(" hey", message) || strcontains(" yo", message)) {
// Prefix small ones with spaces so they don't get mixed up easily in other words. "this" -> hi, "you" -> yo, "they" -> hey
snprintf(msgout, 255, messages->getMessage("greets").c_str(), from.c_str());
} else { } else {
std::string response; std::string response;
if ((response = getResponse(conf.getResponses(), message)).length() > 0) { if ((response = getResponse(replylist->get(), message)).length() > 0) {
snprintf(msgout, 255, "%s", response.c_str()); snprintf(msgout, 255, response.c_str());
} }
} }
@ -591,7 +607,7 @@ void processText(int *sock, std::string username, std::string message) {
int alen = 0; int alen = 0;
// Someone has requested P3NG0s attention. // Someone has requested P3NG0s attention.
// We'll accept some variations. // We'll accept some variations.
if ((alen = vstrcontains(message, conf.getMessages("attention"))) > 0) { if ((alen = vstrcontains(message, messages->getMessages("attention"))) > 0) {
// Strip out the attention. We got it. // Strip out the attention. We got it.
message = message.substr(alen+1, message.length()); message = message.substr(alen+1, message.length());
msgout = handleCommand(username, message); msgout = handleCommand(username, message);
@ -599,12 +615,12 @@ void processText(int *sock, std::string username, std::string message) {
else if (strcontains("your commands", message) || strcontains("can you do", message)) { else if (strcontains("your commands", message) || strcontains("can you do", message)) {
char *whisout = new char[255]; char *whisout = new char[255];
snprintf(whisout, 255, "Check this out: %s", conf.getValue("help_url", "").c_str()); snprintf(whisout, 255, mainConf->getValue("help_msg", "You can find more information here: %s").c_str(), mainConf->getValue("help_url", "").c_str());
sendWhisperMessage(&roomsock, username, whisout); sendWhisperMessage(&roomsock, username, whisout);
snprintf(msgout, 255, "You have been whispered with a link that will help you."); snprintf(msgout, 255, mainConf->getValue("help_whisper_message", "%s, you have been whispered with more information.").c_str(), username.c_str());
sendChatMessage(sock, msgout); sendChatMessage(sock, msgout);
} else if (strcontains("test ping", message)) { } else if (strcontains("ping test", message)) {
pingStart = std::chrono::system_clock::now(); pingStart = std::chrono::system_clock::now();
snprintf(msgout, 255, "Ping!"); snprintf(msgout, 255, "Ping!");
@ -612,14 +628,14 @@ void processText(int *sock, std::string username, std::string message) {
} }
} else if (message == "ping") { // We'll accept a simple ping to pong. } else if (message == "ping") { // We'll accept a simple ping to pong.
sendChatMessage(sock, "Pong!"); sendChatMessage(sock, mainConf->getValue("pong_msg", "Pong!"));
} }
} else { } else {
if (debug) printf("debug: processing own message: %s\n", message.c_str()); if (debug) printf("debug: processing own message: %s\n", message.c_str());
if (message.compare("Ping!") == 0) { if (message.compare("Ping!") == 0) {
pingEnd = std::chrono::system_clock::now(); pingEnd = std::chrono::system_clock::now();
std::chrono::duration<double, std::milli> ping = pingEnd - pingStart; std::chrono::duration<double, std::milli> ping = pingEnd - pingStart;
snprintf(msgout, 255, "Response received in %ims.", ping.count()); snprintf(msgout, 255, mainConf->getValue("ping_msg", "Response recieved in %ims.").c_str(), ping.count());
sendChatMessage(sock, msgout); sendChatMessage(sock, msgout);
} }
} }
@ -631,14 +647,19 @@ void processWhisper(int *sock, std::string username, std::string message) {
message = toLower(message); message = toLower(message);
if (message == "ping") { if (message == "ping") {
sendWhisperMessage(sock, username, "Pong"); sendWhisperMessage(sock, username, mainConf->getValue("pong_msg", "Pong!"));
} else { } else {
msgout = handleCommand(username, message); msgout = handleCommand(username, message);
if (strlen(msgout) > 0) sendWhisperMessage(sock, username, msgout); if (strlen(msgout) > 0) sendWhisperMessage(sock, username, msgout);
else {
snprintf(msgout, 255, messages->getMessage("unknown").c_str());
sendWhisperMessage(sock, username, msgout);
}
} }
} }
void sendChatMessage(int *sock, std::string msg) { void sendChatMessage(int *sock, std::string msg) {
if (msg.length() > 0) {
unsigned char msgout[255] = {0}; unsigned char msgout[255] = {0};
int msglen = msg.length(); int msglen = msg.length();
int k = 1; int k = 1;
@ -651,9 +672,11 @@ void sendChatMessage(int *sock, std::string msg) {
msgout[k] = 0; msgout[k] = 0;
msgout[0] = k; msgout[0] = k;
wsend(&roomsock, msgout, 0); wsend(&roomsock, msgout, 0);
}
} }
void sendWhisperMessage(int *sock, std::string to, std::string msg) { void sendWhisperMessage(int *sock, std::string to, std::string msg) {
if (msg.length() > 0 && to.length() > 0) {
whisper_repeat: whisper_repeat:
unsigned char msgout[255] = {0}; unsigned char msgout[255] = {0};
int k = 1; int k = 1;
@ -675,6 +698,7 @@ void sendWhisperMessage(int *sock, std::string to, std::string msg) {
msg = msg.substr(226, -1); msg = msg.substr(226, -1);
goto whisper_repeat; goto whisper_repeat;
} }
}
} }
int wsend(int *sock, unsigned char str[], int flags) { int wsend(int *sock, unsigned char str[], int flags) {