mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
65 lines
1.8 KiB
C++
65 lines
1.8 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
|
|
#ifndef __msg_HostTable__
|
|
#define __msg_HostTable__ 1
|
|
|
|
/* This class manages the list of newshosts. It opens the database at
|
|
startup (or creates one from scratch if it's missing). */
|
|
|
|
|
|
class MSG_NewsHost;
|
|
class CMozillaDatabase;
|
|
|
|
class msg_HostTable {
|
|
public:
|
|
static msg_HostTable* Create(MSG_Master* master);
|
|
|
|
~msg_HostTable();
|
|
|
|
int getNumHosts() {return m_numhosts;}
|
|
MSG_NewsHost* getHost(int i) {
|
|
XP_ASSERT(i >= 0 && i < m_numhosts);
|
|
return m_hosts[i];
|
|
}
|
|
MSG_NewsHost* GetDefaultHost(XP_Bool createIfMissing);
|
|
|
|
int32 GetHostList(MSG_NewsHost** result, int32 resultsize);
|
|
|
|
MSG_NewsHost *AddNewsHost(const char* name, XP_Bool secure, int32 port,
|
|
const char* newsrcname);
|
|
|
|
MSG_NewsHost *FindNewsHost (MSG_FolderInfo *container);
|
|
|
|
int RemoveEntry(MSG_NewsHost* host);
|
|
|
|
MSG_NewsHost *InferHostFromGroups (const char *groups);
|
|
|
|
protected:
|
|
msg_HostTable(MSG_Master* master);
|
|
|
|
MSG_Master* m_master;
|
|
int32 m_numhosts;
|
|
int32 m_maxhosts;
|
|
MSG_NewsHost** m_hosts;
|
|
};
|
|
|
|
|
|
|
|
#endif /* __msg_HostTable__ */
|