diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-02-07 17:42:20 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-02-07 17:42:20 +0000 |
commit | 5f9237c4a3b9f3d79e566ebb9cc6b4036613228e (patch) | |
tree | 16d078d8b5790ad4ed51ca671fcfa14283396dc3 /include | |
parent | 8785246ab68a09c7a2cdf3c876003daebc787996 (diff) |
Added support for explicitly binding an outbound connection to an ip. Will be used by spanningtree.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6534 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/inspsocket.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/inspsocket.h b/include/inspsocket.h index 739e4408d..03b674b7a 100644 --- a/include/inspsocket.h +++ b/include/inspsocket.h @@ -69,6 +69,8 @@ class InspSocket : public EventHandler { public: + std::string cbindip; + bool IsIOHooked; InspIRCd* Instance; @@ -149,7 +151,7 @@ class InspSocket : public EventHandler */ bool WaitingForWriteEvent; - bool BindAddr(); + bool BindAddr(const std::string &ip); /** * The default constructor does nothing @@ -177,9 +179,10 @@ class InspSocket : public EventHandler * @param port The port number to connect to, or bind to * @param listening true to listen on the given host:port pair, or false to connect to them * @param maxtime Number of seconds to wait, if connecting, before the connection times out and an OnTimeout() event is generated + * @param connectbindip When creating an outbound connection, the IP to bind the connection to. If not defined, the port is not bound. * @return On exit, GetState() returns I_ERROR if an error occured, and errno can be used to read the socket error. */ - InspSocket(InspIRCd* SI, const std::string &ipaddr, int port, bool listening, unsigned long maxtime); + InspSocket(InspIRCd* SI, const std::string &ipaddr, int port, bool listening, unsigned long maxtime, const std::string &connectbindip = ""); /** * This method is called when an outbound |