mirror of https://github.com/aria2/aria2
2008-08-17 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Made parse() const * src/Sqlite3MozCookieParser.cc * src/Sqlite3MozCookieParser.hpull/1/head
parent
0cac0dabde
commit
aabb6bb2d9
|
@ -1,3 +1,9 @@
|
|||
2008-08-17 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
||||
|
||||
Made parse() const
|
||||
* src/Sqlite3MozCookieParser.cc
|
||||
* src/Sqlite3MozCookieParser.h
|
||||
|
||||
2008-08-17 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
||||
|
||||
Added firefox3 cookie support based on the patch submitted by
|
||||
|
|
|
@ -82,7 +82,8 @@ static int cookieRowMapper(void* data, int rowIndex,
|
|||
return 0;
|
||||
}
|
||||
|
||||
std::deque<Cookie> Sqlite3MozCookieParser::parse(const std::string& filename)
|
||||
std::deque<Cookie>
|
||||
Sqlite3MozCookieParser::parse(const std::string& filename) const
|
||||
{
|
||||
sqlite3* db = 0;
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@ public:
|
|||
|
||||
~Sqlite3MozCookieParser();
|
||||
|
||||
std::deque<Cookie> parse(const std::string& filename);
|
||||
std::deque<Cookie> parse(const std::string& filename) const;
|
||||
};
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Reference in New Issue