diff options
| author | 2007-01-20 23:34:42 +0000 | |
|---|---|---|
| committer | 2007-01-20 23:34:42 +0000 | |
| commit | a16d415ee4a4b8a48f01c80919a11a026911c957 (patch) | |
| tree | 1a9220ad7dcca9a13bb6f325063d42a251f3f64f /src/hashcomp.cpp | |
| parent | Fix the commandline stuff up to actually work! (diff) | |
| download | inspircd++-a16d415ee4a4b8a48f01c80919a11a026911c957.tar.gz inspircd++-a16d415ee4a4b8a48f01c80919a11a026911c957.tar.bz2 inspircd++-a16d415ee4a4b8a48f01c80919a11a026911c957.zip | |
Fixed (rewrote) m_http_client's URL parsing, it is now more flexible and.. actually works.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6416 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/hashcomp.cpp')
| -rw-r--r-- | src/hashcomp.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/hashcomp.cpp b/src/hashcomp.cpp index 5c9cac7bb..55b3f9b58 100644 --- a/src/hashcomp.cpp +++ b/src/hashcomp.cpp @@ -284,6 +284,11 @@ const std::string irc::sepstream::GetToken() return ""; } +bool irc::sepstream::StreamEnd() +{ + return ((n + 1) == tokens.end()); +} + irc::sepstream::~sepstream() { } |
