aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/nntp/MCNNTPSession.h
diff options
context:
space:
mode:
authorGravatar Robert Widmann <devteam.codafi@gmail.com>2014-10-21 17:31:59 -0600
committerGravatar Robert Widmann <devteam.codafi@gmail.com>2014-10-21 17:31:59 -0600
commit96f2623c2f1cba2fb5f625dbeae8a38eb20203c1 (patch)
treea11c883f368161e9d6f5b4600e66158eed90a502 /src/core/nntp/MCNNTPSession.h
parentdb7ec6896ffa7e1072d814d02fee2c5abae22ff2 (diff)
XOVER
Diffstat (limited to 'src/core/nntp/MCNNTPSession.h')
-rw-r--r--src/core/nntp/MCNNTPSession.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/core/nntp/MCNNTPSession.h b/src/core/nntp/MCNNTPSession.h
index e5ebbd91..84a6fb4e 100644
--- a/src/core/nntp/MCNNTPSession.h
+++ b/src/core/nntp/MCNNTPSession.h
@@ -47,13 +47,15 @@ namespace mailcore {
virtual Array * /* NNTPGroupInfo */ listAllNewsgroups(ErrorCode * pError);
virtual Array * listDefaultNewsgroups(ErrorCode * pError);
- virtual MessageHeader * fetchHeader(String *groupName, unsigned int index, ErrorCode * pError);
-
+ virtual MessageHeader * fetchHeader(String * groupName, unsigned int index, ErrorCode * pError);
+ virtual Array /*MessageHeader*/ * fetchOverArticlesInRange(Range range, String * groupname, ErrorCode * pError);
+
virtual IndexSet * fetchAllArticles(String * groupname, ErrorCode * pError);
+
+ virtual Data * fetchArticle(String *groupName, unsigned int index, NNTPProgressCallback * callback, ErrorCode * pError);
+ virtual Data * fetchArticleByMessageID(String * groupname, String * messageID, ErrorCode * pError);
- virtual Array * fetchOverArticlesInRange(Range range, String * groupname, ErrorCode * pError);
-
- Data * fetchArticle(String *groupName, unsigned int index, NNTPProgressCallback * callback, ErrorCode * pError);
+ virtual time_t fetchServerClock(ErrorCode * pError);
virtual void setConnectionLogger(ConnectionLogger * logger);
virtual ConnectionLogger * connectionLogger();