Home
last modified time | relevance | path

Searched refs:serverConnection (Results 1 – 25 of 92) sorted by relevance

1234

/dports/graphics/urho3d/Urho3D-1.7.1/bin/Data/LuaScripts/
H A D16_Chat.lua120 local serverConnection = network.serverConnection
124 sendButton.visible = serverConnection ~= nil
125 connectButton.visible = (serverConnection == nil) and (not serverRunning)
126 disconnectButton.visible = (serverConnection ~= nil) or serverRunning
127 startServerButton.visible = (serverConnection == nil) and (not serverRunning)
140 local serverConnection = network.serverConnection
141 if serverConnection ~= nil then
146 serverConnection:SendMessage(MSG_CHAT, true, true, msg)
170 local serverConnection = network.serverConnection
172 if serverConnection ~= nil then
[all …]
H A D17_SceneReplication.lua190 local serverConnection = network:GetServerConnection()
194 connectButton.visible = serverConnection == nil and not serverRunning
195 disconnectButton.visible = serverConnection ~= nil or serverRunning
197 textEdit.visible = serverConnection == nil and not serverRunning
279 local serverConnection = network:GetServerConnection()
282 if serverConnection ~= nil then
296 serverConnection.controls = controls
299 serverConnection.position = cameraNode.position
347 local serverConnection = network.serverConnection
350 if serverConnection ~= nil then
[all …]
/dports/www/squid/squid-4.15/src/security/
H A DPeerConnector.cc89 if (!Comm::IsConnOpen(serverConnection()) || fd_table[serverConnection()->fd].closing()) { in prepareSocket()
94 debugs(83, 5, serverConnection()); in prepareSocket()
161 const int fd = serverConnection()->fd; in recordNegotiationDetails()
182 const int fd = serverConnection()->fd;
399 const int fd = serverConnection()->fd;
463 const int fd = serverConnection()->fd;
464 debugs(83, 5, serverConnection());
494 const int fd = serverConnection()->fd;
495 debugs(83, 5, serverConnection());
516 const int fd = serverConnection()->fd;
[all …]
H A DBlindPeerConnector.cc25 if (const CachePeer *peer = serverConnection()->getPeer()) { in getTlsContext()
40 if (const CachePeer *peer = serverConnection()->getPeer()) { in initialize()
74 if (CachePeer *p = serverConnection()->getPeer()) in noteNegotiationDone()
79 if (auto *peer = serverConnection()->getPeer()) { in noteNegotiationDone()
80 const int fd = serverConnection()->fd; in noteNegotiationDone()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Samples/16_Chat/
H A DChat.cpp174 Connection* serverConnection = network->GetServerConnection(); in UpdateButtons() local
178 sendButton_->SetVisible(serverConnection != 0); in UpdateButtons()
179 connectButton_->SetVisible(!serverConnection && !serverRunning); in UpdateButtons()
180 disconnectButton_->SetVisible(serverConnection || serverRunning); in UpdateButtons()
181 startServerButton_->SetVisible(!serverConnection && !serverRunning); in UpdateButtons()
198 Connection* serverConnection = network->GetServerConnection(); in HandleSend() local
200 if (serverConnection) in HandleSend()
206 serverConnection->SendMessage(MSG_CHAT, true, true, msg); in HandleSend()
232 Connection* serverConnection = network->GetServerConnection(); in HandleDisconnect() local
234 if (serverConnection) in HandleDisconnect()
[all …]
/dports/www/squid/squid-4.15/src/
H A Dhttp.cc88 serverConnection = fwd->serverConnection(); in HttpStateData()
90 if (fwd->serverConnection() != NULL) in HttpStateData()
133 return serverConnection; in dataConnection()
1074 if (!Comm::IsConnOpen(serverConnection)) in persistentConnStatus()
1465 serverConnection = nullptr; in processReplyBody()
1517 if (!Comm::IsConnOpen(serverConnection) || fd_table[serverConnection->fd].closing()) in maybeReadVirginBody()
1536 Comm::Read(serverConnection, call); in maybeReadVirginBody()
1570 ") from " << serverConnection); in maybeMakeSpaceAvailable()
1638 fwd->unregister(serverConnection); in closeServer()
1641 serverConnection->close(); in closeServer()
[all …]
H A DFwdState.cc111 if (Comm::IsConnOpen(fwd->serverConnection())) { in abort()
479 assert(serverConnection() == conn); in unregister()
491 assert(fd == serverConnection()->fd); in unregister()
635 if (fd >= 0 && serverConnection()->fd == fd) in serverClosed()
749 if (CachePeer *p = serverConnection()->getPeer()) in connectedToPeer()
751 serverConnection()->close(); in connectedToPeer()
769 if (serverConnection()->getPeer()) in connectedToPeer()
942 fd_note(serverConnection()->fd, entry->url()); in dispatch()
944 fd_table[serverConnection()->fd].noteUse(); in dispatch()
988 if (serverConnection()->getPeer() != NULL) { in dispatch()
[all …]
H A Dwhois.cc66 comm_add_close_handler(fwd->serverConnection()->fd, whoisClose, p); in whoisStart()
76 Comm::Write(fwd->serverConnection(), buf, strlen(buf), writeCall, NULL); in whoisStart()
79 comm_read(fwd->serverConnection(), p->buf, BUFSIZ, readCall); in whoisStart()
82 commSetConnTimeout(fwd->serverConnection(), Config.Timeout.read, timeoutCall); in whoisStart()
/dports/graphics/urho3d/Urho3D-1.7.1/bin/Data/Scripts/
H A D16_Chat.as123 Connection@ serverConnection = network.serverConnection;
127 sendButton.visible = serverConnection !is null;
128 connectButton.visible = serverConnection is null && !serverRunning;
129 disconnectButton.visible = serverConnection !is null || serverRunning;
130 startServerButton.visible = serverConnection is null && !serverRunning;
144 Connection@ serverConnection = network.serverConnection;
146 if (serverConnection !is null)
152 serverConnection.SendMessage(MSG_CHAT, true, true, msg);
176 Connection@ serverConnection = network.serverConnection;
178 if (serverConnection !is null)
[all …]
H A D17_SceneReplication.as206 Connection@ serverConnection = network.serverConnection;
210 connectButton.visible = serverConnection is null && !serverRunning;
211 disconnectButton.visible = serverConnection !is null || serverRunning;
213 textEdit.visible = serverConnection is null && !serverRunning;
300 Connection@ serverConnection = network.serverConnection;
303 if (serverConnection !is null)
319 serverConnection.controls = controls;
322 serverConnection.position = cameraNode.position;
370 Connection@ serverConnection = network.serverConnection;
373 if (serverConnection !is null)
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/connection/
H A DConnection.java45 private IServerConnection serverConnection; field in Connection
52 public Connection(ICVSRepositoryLocation cvsroot, IServerConnection serverConnection) { in Connection() argument
54 this.serverConnection = serverConnection; in Connection()
74 serverConnection.close(); in close()
106 return serverConnection.getOutputStream(); in getOutputStream()
116 fResponseStream = serverConnection.getInputStream(); in getInputStream()
135 serverConnection.open(monitor); in open()
/dports/net/eternalterminal/EternalTerminal-et-v5.1.9/test/
H A DConnectionTest.cpp108 shared_ptr<ServerConnection> serverConnection) { in listenFn() argument
110 if (serverConnection->getSocketHandler()->hasData(serverFd)) { in listenFn()
111 serverConnection->acceptNewConnection(serverFd); in listenFn()
142 serverConnection.reset(new ServerConnection( in SetUp()
149 new std::thread(listenFn, &stopListening, serverFd, serverConnection)); in SetUp()
157 serverConnection->shutdown(); in TearDown()
158 serverConnection.reset(); in TearDown()
173 serverConnection->addClientKey(clientId, CRYPTO_KEY); in readWriteTest()
227 serverConnection->removeClient(serverCollector->getConnection()->getId()); in readWriteTest()
237 shared_ptr<ServerConnection> serverConnection; member in ConnectionTest
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Samples/17_SceneReplication/
H A DSceneReplication.cpp260 Connection* serverConnection = network->GetServerConnection(); in UpdateButtons() local
264 connectButton_->SetVisible(!serverConnection && !serverRunning); in UpdateButtons()
265 disconnectButton_->SetVisible(serverConnection || serverRunning); in UpdateButtons()
267 textEdit_->SetVisible(!serverConnection && !serverRunning); in UpdateButtons()
353 Connection* serverConnection = network->GetServerConnection(); in HandlePhysicsPreStep() local
356 if (serverConnection) in HandlePhysicsPreStep()
374 serverConnection->SetControls(controls); in HandlePhysicsPreStep()
377 serverConnection->SetPosition(cameraNode_->GetPosition()); in HandlePhysicsPreStep()
433 Connection* serverConnection = network->GetServerConnection(); in HandleDisconnect() local
436 if (serverConnection) in HandleDisconnect()
[all …]
/dports/devel/pyside2/pyside-setup-opensource-src-5.15.2/sources/pyside2/tests/QtNetwork/
H A Dbug_446.py51 self.serverConnection = self.server.nextPendingConnection()
52 self.serverConnection.error.connect(self.onError)
53 self.serverConnection.write(HttpSignalsCase.DATA)
74 self.serverConnection.close()
/dports/devel/pyside2-tools/pyside-setup-opensource-src-5.15.2/sources/pyside2/tests/QtNetwork/
H A Dbug_446.py51 self.serverConnection = self.server.nextPendingConnection()
52 self.serverConnection.error.connect(self.onError)
53 self.serverConnection.write(HttpSignalsCase.DATA)
74 self.serverConnection.close()
/dports/devel/shiboken2/pyside-setup-opensource-src-5.15.2/sources/pyside2/tests/QtNetwork/
H A Dbug_446.py51 self.serverConnection = self.server.nextPendingConnection()
52 self.serverConnection.error.connect(self.onError)
53 self.serverConnection.write(HttpSignalsCase.DATA)
74 self.serverConnection.close()
/dports/graphics/drawpile/Drawpile-2.1.20/src/thinsrv/gui/
H A Dmainwindow.cpp42 void MainWindow::setDefaultInstanceServer(Server *serverConnection) in setDefaultInstanceServer() argument
44 Q_ASSERT(serverConnection); in setDefaultInstanceServer()
46 DEFAULT_SERVER = serverConnection; in setDefaultInstanceServer()
63 MainWindow::MainWindow(Server *serverConnection, QWidget *parent) in MainWindow() argument
64 : QMainWindow(parent), m_server(serverConnection) in MainWindow()
H A Dmainwindow.h38 explicit MainWindow(Server *serverConnection, QWidget *parent=nullptr);
41 static void setDefaultInstanceServer(Server *serverConnection);
/dports/science/jmol/jmol-14.32.7/src/org/jmol/multitouch/sparshui/
H A DJmolSparshClientAdapter.java73 private ClientServerConnection serverConnection; field in JmolSparshClientAdapter
88 if (serverConnection != null) { in dispose()
89 serverConnection.close(); in dispose()
90 serverConnection.interrupt(); in dispose()
143 serverConnection = new ClientServerConnection("127.0.0.1", this); in setMultiTouchClient()
/dports/lang/gnustep-base/libs-base-base-1_27_0/Tests/base/NSConnection/Resources/
H A DConnection.m19 NSConnection *serverConnection;
24 serverConnection = [NSConnection
29 [(id)[serverConnection rootProxy] setServer: serverObject];
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/gotools/src/github.com/mongodb/mongo-tools/mongoreplay/
H A Drecorded_op_generator_test.go15 serverConnection *ConnStub member
21 var serverConnection ConnStub
22 serverConnection, session.connection = newTwoSidedConn()
27 serverConnection: &serverConnection,
387 msg, err := ReadHeader(generator.serverConnection)
393 result.FromReader(generator.serverConnection)
/dports/databases/mongodb42-tools/mongo-tools-r4.2.17/mongoreplay/
H A Drecorded_op_generator_test.go15 serverConnection *ConnStub member
21 var serverConnection ConnStub
22 serverConnection, session.connection = newTwoSidedConn()
27 serverConnection: &serverConnection,
387 msg, err := ReadHeader(generator.serverConnection)
393 result.FromReader(generator.serverConnection)
/dports/devel/mutagen/mutagen-0.11.8/pkg/integration/protocols/netpipe/
H A Dsynchronization.go40 clientConnection, serverConnection := net.Pipe()
44 go remote.ServeEndpoint(logger.Sublogger("remote"), serverConnection)
H A Dforwarding.go47 clientConnection, serverConnection := net.Pipe()
51 go remote.ServeEndpoint(logger.Sublogger("remote"), serverConnection)
/dports/lang/gnustep-base/libs-base-base-1_27_0/Examples/
H A Dnsconnection.m30 NSConnection *serverConnection;
35 serverConnection = [NSConnection
44 [(id)[serverConnection rootProxy] setServer: serverObject];

1234