1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 20:43:12 +02:00

Windows fixes

This commit is contained in:
Adam
2012-11-05 20:35:23 -05:00
parent 22c8297a03
commit 27ab6a686c
10 changed files with 26 additions and 21 deletions
+1
View File
@@ -17,6 +17,7 @@
#include "memo.h"
#include "users.h"
#include "account.h"
#include "regchannel.h"
Memo::Memo() : Flags<MemoFlag>(MemoFlagStrings), Serializable("Memo") { }
+1
View File
@@ -10,6 +10,7 @@
#include "modules.h"
#include "extern.h"
#include "users.h"
#include "regchannel.h"
#include <sys/types.h>
#include <sys/stat.h>
+1
View File
@@ -14,6 +14,7 @@
#include "modules.h"
#include "users.h"
#include "protocol.h"
#include "regchannel.h"
NickAlias* findnick(const Anope::string &nick)
{
+1
View File
@@ -15,6 +15,7 @@
#include "protocol.h"
#include "servers.h"
#include "users.h"
#include "regchannel.h"
/** Main process routine
* @param buffer A raw line from the uplink to do things with
+1 -1
View File
@@ -27,7 +27,7 @@ Pipe::Pipe() : Socket(-1), WritePipe(-1)
flags = fcntl(fds[1], F_GETFL, 0);
fcntl(fds[1], F_SETFL, flags | O_NONBLOCK);
this->~Socket();
this->~Pipe();
this->Sock = fds[0];
this->WritePipe = fds[1];