Esempio n. 1
0
bool IRCRoom::UserDetails::getBanned() const
{
	OS_LOCK(*m_cs);
	return m_banned;
}
Esempio n. 2
0
void IRCRoom::markModified()
{
	OS_LOCK(*m_cs);
	m_modified = true;
}
Esempio n. 3
0
std::string IRCSession::getNick() const
{
	OS_LOCK(m_dataCS);
	return m_nick;
}
Esempio n. 4
0
bool pimpl<Thread>::stopped() const
{
	OS_LOCK(m_cs);
	return m_status == isStopped;
}
Esempio n. 5
0
uint32 IRCSession::getTimeout() const
{
	OS_LOCK(m_dataCS);
	return m_timeout;
}
Esempio n. 6
0
void IRCSession::setClientName(const std::string &clientName)
{
	OS_LOCK(m_dataCS);
	m_clientName = clientName;
}
Esempio n. 7
0
boost::asio::ip::tcp::endpoint PortalsPeer::getEndpoint() const
{
    OS_LOCK(*m_mutex);
    return m_endpoint;
}
Esempio n. 8
0
uint32 NetworkService::getWorkerThreadsCount() const
{
	OS_LOCK(m_impl->serviceCS);
	return m_impl->workerThreadsCount;
}
Esempio n. 9
0
void PortalsPeer::setSupernode(bool supernode)
{
    OS_LOCK(*m_mutex);
    m_supernode = supernode;
}
Esempio n. 10
0
uint64 PortalsPeer::getID() const
{
    OS_LOCK(*m_mutex);
    return makeID(m_endpoint);
}
Esempio n. 11
0
bool pimpl<Thread>::ready() const
{
	OS_LOCK(m_cs);
	return m_status == isReady;
}
Esempio n. 12
0
TaskPriority pimpl<Thread>::getPriority() const
{
	OS_LOCK(m_cs);
	return m_priority;
}
Esempio n. 13
0
boost::any pimpl<Thread>::getID() const
{
	OS_LOCK(m_cs);
	return m_id;
}
Esempio n. 14
0
IRCUserType IRCRoom::UserDetails::getType() const
{
	OS_LOCK(*m_cs);
	return m_type;
}
Esempio n. 15
0
uint16 PortalsPeer::getRetries() const
{
    OS_LOCK(*m_mutex);
    return m_retries;
}
Esempio n. 16
0
bool IRCRoom::UserDetails::getVoice() const
{
	OS_LOCK(*m_cs);
	return m_voice;
}
Esempio n. 17
0
String PortalsPeer::getOrigin() const
{
    OS_LOCK(*m_mutex);
    return m_origin;
}
Esempio n. 18
0
bool IRCSession::getEnableSSL() const
{
	OS_LOCK(m_dataCS);
	return m_enableSSL;
}
Esempio n. 19
0
DateTime PortalsPeer::getLastContactDate() const
{
    OS_LOCK(*m_mutex);
    return m_lastContactDate;
}
Esempio n. 20
0
std::string IRCSession::getClientName() const
{
	OS_LOCK(m_dataCS);
	return m_clientName;
}
Esempio n. 21
0
bool PortalsPeer::getSupernode() const
{
    OS_LOCK(*m_mutex);
    return m_supernode;
}
Esempio n. 22
0
std::string IRCSession::getUser() const
{
	OS_LOCK(m_dataCS);
	return m_user;
}
Esempio n. 23
0
bool IRCRoom::UserDetails::getInvisible() const
{
	OS_LOCK(*m_cs);
	return m_invisible;
}
Esempio n. 24
0
shared_ptr<IRCUser> IRCSession::getLocalUser()
{
	OS_LOCK(m_dataCS);
	return ensureUser(m_nick);
}
Esempio n. 25
0
bool pimpl<Thread>::running() const
{
	OS_LOCK(m_cs);
	return m_status == isRunning;
}