diff options
| author | 2007-10-15 21:04:32 +0000 | |
|---|---|---|
| committer | 2007-10-15 21:04:32 +0000 | |
| commit | 2b68243097f98ace4a53b21520718874b0ed7db5 (patch) | |
| tree | 5fbdbb4270efebbfb0956733d25b1245c8586d25 /src/modules/m_http_client.cpp | |
| parent | InspTimer -> Timer (diff) | |
| download | inspircd++-2b68243097f98ace4a53b21520718874b0ed7db5.tar.gz inspircd++-2b68243097f98ace4a53b21520718874b0ed7db5.tar.bz2 inspircd++-2b68243097f98ace4a53b21520718874b0ed7db5.zip | |
InspSocket -> BufferedSocket. Paves the way for a SimpleSocket class which ident etc will use.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8206 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_http_client.cpp')
| -rw-r--r-- | src/modules/m_http_client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_http_client.cpp b/src/modules/m_http_client.cpp index a2f80687f..3f424b595 100644 --- a/src/modules/m_http_client.cpp +++ b/src/modules/m_http_client.cpp @@ -24,7 +24,7 @@ class URL int port; }; -class HTTPSocket : public InspSocket +class HTTPSocket : public BufferedSocket { private: InspIRCd *Server; @@ -111,7 +111,7 @@ class ModuleHTTPClient : public Module }; HTTPSocket::HTTPSocket(InspIRCd *Instance, ModuleHTTPClient *Mod) - : InspSocket(Instance), Server(Instance), Mod(Mod), status(HTTP_CLOSED) + : BufferedSocket(Instance), Server(Instance), Mod(Mod), status(HTTP_CLOSED) { this->ClosePending = false; this->port = 80; |
