Searched refs:IsConnected (Results 1 - 25 of 35) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/libs/ec/cpp/
H A DECMuleSocket.h61 bool InternalIsConnected() { return wxSocketClient::IsConnected(); }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/sockets/
H A Dclient.cpp302 // Use IsConnected() to distinguish between these two.
320 // bool success = client->IsConnected();
328 if (m_sock->IsConnected())
624 if (!m_sock->IsConnected())
640 m_menuSocket->Enable(CLIENT_OPEN, !m_sock->IsConnected() && !m_busy);
641 m_menuSocket->Enable(CLIENT_TEST1, m_sock->IsConnected() && !m_busy);
642 m_menuSocket->Enable(CLIENT_TEST2, m_sock->IsConnected() && !m_busy);
643 m_menuSocket->Enable(CLIENT_TEST3, m_sock->IsConnected() && !m_busy);
644 m_menuSocket->Enable(CLIENT_CLOSE, m_sock->IsConnected());
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dsckipc.cpp393 if (!m_sock->IsConnected())
411 if (!m_sock->IsConnected())
443 if (!m_sock->IsConnected())
463 if (!m_sock->IsConnected())
481 if (!m_sock->IsConnected())
499 if (!m_sock->IsConnected())
H A Dhttp.cpp397 if (!wxSocketClient::IsConnected())
H A Dftp.cpp176 if ( IsConnected() )
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/kademlia/kademlia/
H A DKademlia.h74 static bool IsConnected() throw() { return instance && instance->m_prefs ? instance->m_prefs->HasHadContact() : false; } function in class:Kademlia::CKademlia
90 if (instance && instance->m_udpListener && !IsConnected() && now - m_bootstrap > 10) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DServerConnect.h82 bool IsConnected() { return connected; } function in class:CServerConnect
H A Damule.cpp1446 if (Kademlia::CKademlia::IsConnected() && Kademlia::CKademlia::GetIPAddress() ) {
1633 bool CamuleApp::IsConnected() const function in class:CamuleApp
1641 return serverconnect && serverconnect->IsConnected();
1647 return Kademlia::CKademlia::IsConnected();
1662 return !Kademlia::CKademlia::IsConnected() // not connected counts as firewalled
1668 return !Kademlia::CKademlia::IsConnected() // not connected counts as firewalled
1738 if (Kademlia::CKademlia::IsConnected()) {
1836 if (theApp->serverconnect->IsConnected()) {
1841 if (Kademlia::CKademlia::IsConnected()) {
1899 theApp->downloadqueue->OnConnectionState(IsConnected());
[all...]
H A DEMSocket.h53 bool IsConnected() { return byConnected==ES_CONNECTED;}; function in class:CEMSocket
H A DListenSocket.cpp248 if( theApp->IsConnected() ) {
H A DUploadQueue.cpp136 if (cur_client->HasLowID() && !cur_client->IsConnected()) {
160 % (c->HasLowID() ? (c->IsConnected() ? wxT("LoCon") : wxT("LowId")) : wxT("High "))
206 if (!newclient->IsConnected()) {
384 if (theApp->serverconnect->IsConnected() && theApp->serverconnect->IsLowID() && !theApp->serverconnect->IsLocalServer(client->GetServerIP(),client->GetServerPort()) && client->GetDownloadState() == DS_NONE && !client->IsFriend() && theStats::GetWaitingUserCount() > 50) {
H A DServerConnect.cpp547 if (IsConnected() && connectedsocket) {
576 if (IsConnected()){
H A DBaseClient.cpp1067 if(Kademlia::CKademlia::IsConnected()) {
1411 if (!(m_socket && m_socket->IsConnected())) {
1490 if( Kademlia::CKademlia::IsConnected() ) {
1501 if (!m_socket || !m_socket->IsConnected()) {
1567 if( !Kademlia::CKademlia::IsConnected() ) {
1650 m_hasbeenobfuscatinglately = (m_socket && m_socket->IsConnected() && m_socket->IsObfusicating());
2047 if (IsConnected()) {
2336 if (IsConnected()){
2361 bool CUpDownClient::IsConnected() const function in class:CUpDownClient
2363 return m_socket && m_socket->IsConnected();
[all...]
H A Damule-remote-gui.h402 bool IsConnected() { return (m_ID != 0) && (m_ID != 0xffffffff); } function in class:CServerConnectRem
687 bool IsConnected() const { return IsConnectedED2K() || IsConnectedKad(); } function in class:CamuleRemoteGuiApp
H A DClientList.cpp385 if (found_client->IsConnected()
596 wxASSERT(cur_client->IsConnected());
685 if ( Kademlia::CKademlia::IsConnected() ) {
H A DamuleDlg.cpp394 if(!theApp->IsConnected()) {
761 } else if (theApp->IsConnected()) {
873 if ( theApp->IsConnected() ) {
H A DMuleTrayIcon.cpp494 if (theApp->IsConnected()) {
H A Damule.h197 bool IsConnected() const;
H A DamuleAppCommon.cpp158 if (add_source && theApp->IsConnected() && !theApp->IsFirewalled()) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/ipc/
H A Dclient.cpp221 const bool isConnected = (m_client != NULL && m_client->IsConnected());
333 if (m_client->IsConnected())
350 if (m_client->IsConnected())
364 if (m_client->IsConnected())
H A Dclient.h102 bool IsConnected() { return m_connection != NULL; }; function in class:MyClient
H A Dserver.h94 bool IsConnected() { return m_connection != NULL; }; function in class:MyServer
H A Dserver.cpp168 GetDisconnect()->Enable(m_server && m_server->IsConnected());
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dsocket.h114 inline bool IsConnected() const { return m_connected; } function in class:wxSocketBase
116 inline bool IsDisconnected() const { return !IsConnected(); }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dsocket.tex125 \helpref{IsConnected}{wxsocketbaseisconnected}\\
344 % IsConnected
346 \membersection{wxSocketBase::IsConnected}\label{wxsocketbaseisconnected}
348 \constfunc{bool}{IsConnected}{\void}
1106 \helpref{IsConnected}{wxsocketbaseisconnected} to distinguish between
1124 bool success = client->IsConnected();
1131 \helpref{wxSocketBase::IsConnected}{wxsocketbaseisconnected}

Completed in 282 milliseconds

12