Home
last modified time | relevance | path

Searched refs:TcpClient (Results 26 – 50 of 286) sorted by relevance

12345678910>>...12

/dports/sysutils/nut/nut-2.7.4/clients/
H A Dnutclient.cpp471 TcpClient::TcpClient(): in TcpClient() function in nut::TcpClient
480 TcpClient::TcpClient(const std::string& host, int port)throw(IOException): in TcpClient() function in nut::TcpClient
487 TcpClient::~TcpClient() in ~TcpClient()
509 int TcpClient::getPort()const in getPort()
519 void TcpClient::disconnect() in disconnect()
1291 nut::TcpClient* client = new nut::TcpClient; in nutclient_tcp_create_client()
1318 nut::TcpClient* cl = dynamic_cast<nut::TcpClient*>((nut::Client*)client); in nutclient_tcp_is_connected()
1331 nut::TcpClient* cl = dynamic_cast<nut::TcpClient*>((nut::Client*)client); in nutclient_tcp_disconnect()
1344 nut::TcpClient* cl = dynamic_cast<nut::TcpClient*>((nut::Client*)client); in nutclient_tcp_reconnect()
1362 nut::TcpClient* cl = dynamic_cast<nut::TcpClient*>((nut::Client*)client); in nutclient_tcp_set_timeout()
[all …]
/dports/audio/stk/stk-4.6.2/src/
H A DTcpClient.cpp32 TcpClient :: TcpClient( int port, std::string hostname ) in TcpClient() function in stk::TcpClient
49 TcpClient :: ~TcpClient( void ) in ~TcpClient()
53 int TcpClient :: connect( int port, std::string hostname ) in connect()
93 int TcpClient :: writeBuffer( const void *buffer, long bufferSize, int flags ) in writeBuffer()
99 int TcpClient :: readBuffer( void *buffer, long bufferSize, int flags ) in readBuffer()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Net.Sockets/
H A DTcpClientCas.cs55 TcpClient c = (TcpClient)ar.AsyncState; in ConnectCallback()
76 TcpClient s = new TcpClient (); in AsyncConnect_StringIntAsyncCallbackObject()
92 TcpClient s = new TcpClient (); in AsyncConnect_IPAddressIntAsyncCallbackObject()
108 TcpClient s = new TcpClient (); in AsyncConnect_IPAddressArrayIntAsyncCallbackObject()
/dports/net-p2p/eiskaltdcpp-cli/eiskaltdcpp-2.2.10/json/jsonrpc-cpp/
H A Djsonrpc_tcpclient.cpp33 TcpClient::TcpClient(const std::string& address, uint16_t port) : Client(address, port) in TcpClient() function in Json::Rpc::TcpClient
38 TcpClient::~TcpClient() in ~TcpClient()
42 ssize_t TcpClient::Send(const std::string& data) in Send()
55 ssize_t TcpClient::Recv(std::string& data) in Recv()
/dports/net-p2p/eiskaltdcpp-gtk/eiskaltdcpp-2.2.10/json/jsonrpc-cpp/
H A Djsonrpc_tcpclient.cpp33 TcpClient::TcpClient(const std::string& address, uint16_t port) : Client(address, port) in TcpClient() function in Json::Rpc::TcpClient
38 TcpClient::~TcpClient() in ~TcpClient()
42 ssize_t TcpClient::Send(const std::string& data) in Send()
55 ssize_t TcpClient::Recv(std::string& data) in Recv()
/dports/net-p2p/eiskaltdcpp-lib/eiskaltdcpp-2.2.10/json/jsonrpc-cpp/
H A Djsonrpc_tcpclient.cpp33 TcpClient::TcpClient(const std::string& address, uint16_t port) : Client(address, port) in TcpClient() function in Json::Rpc::TcpClient
38 TcpClient::~TcpClient() in ~TcpClient()
42 ssize_t TcpClient::Send(const std::string& data) in Send()
55 ssize_t TcpClient::Recv(std::string& data) in Recv()
/dports/net-p2p/eiskaltdcpp-data/eiskaltdcpp-2.2.10/json/jsonrpc-cpp/
H A Djsonrpc_tcpclient.cpp33 TcpClient::TcpClient(const std::string& address, uint16_t port) : Client(address, port) in TcpClient() function in Json::Rpc::TcpClient
38 TcpClient::~TcpClient() in ~TcpClient()
42 ssize_t TcpClient::Send(const std::string& data) in Send()
55 ssize_t TcpClient::Recv(std::string& data) in Recv()
/dports/net-p2p/eiskaltdcpp-daemon/eiskaltdcpp-2.2.10/json/jsonrpc-cpp/
H A Djsonrpc_tcpclient.cpp33 TcpClient::TcpClient(const std::string& address, uint16_t port) : Client(address, port) in TcpClient() function in Json::Rpc::TcpClient
38 TcpClient::~TcpClient() in ~TcpClient()
42 ssize_t TcpClient::Send(const std::string& data) in Send()
55 ssize_t TcpClient::Recv(std::string& data) in Recv()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Channels.NetTcp/
H A DTcpChannelListener.cs71 Queue<TcpClient> accepted_clients = new Queue<TcpClient> ();
82 if (dch != null && dch.TcpClient != null && !dch.TcpClient.Connected) in OnAcceptChannel()
88 TcpClient client = AcceptTcpClient (timeout - (DateTime.UtcNow - start)); in OnAcceptChannel()
110 internal TcpClient AcceptTcpClient (TimeSpan timeout) in AcceptTcpClient()
114 TcpClient client = accepted_clients.Count == 0 ? null : accepted_clients.Dequeue (); in AcceptTcpClient()
131 if (dch == null || dch.TcpClient == null && !dch.TcpClient.Connected) in AcceptTcpClient()
133 if (((IPEndPoint) dch.TcpClient.Client.RemoteEndPoint).Equals (client.Client.RemoteEndPoint)) in AcceptTcpClient()
H A DTcpDuplexSessionChannel.cs68 TcpClient client;
82 …client = new TcpClient (Via.Host, explicitPort <= 0 ? TcpTransportBindingElement.DefaultPort : exp… in TcpDuplexSessionChannel()
86 …public TcpDuplexSessionChannel (ChannelListenerBase listener, TcpChannelInfo info, TcpClient clien… in TcpDuplexSessionChannel()
95 EndpointAddress GetEndpointAddressFromTcpClient (TcpClient client) in GetEndpointAddressFromTcpClient()
121 internal TcpClient TcpClient { property in System.ServiceModel.Channels.NetTcp.TcpDuplexSessionChannel
/dports/net-mgmt/kismet/kismet-2016-07-R1/
H A Dtcpclient.cc22 TcpClient::TcpClient() { in TcpClient() function in TcpClient
26 TcpClient::TcpClient(GlobalRegistry *in_globalreg) : NetworkClient(in_globalreg) { in TcpClient() function in TcpClient
30 TcpClient::~TcpClient() { in ~TcpClient()
34 int TcpClient::Connect(const char *in_remotehost, short int in_port, in Connect()
127 int TcpClient::ConnectSync(const char *in_remotehost, short int in_port, in ConnectSync()
209 int TcpClient::ReadBytes() { in ReadBytes()
246 int TcpClient::WriteBytes() { in WriteBytes()
H A Dtcpclient.h53 class TcpClient : public NetworkClient {
55 TcpClient();
56 TcpClient(GlobalRegistry *in_globalreg);
57 virtual ~TcpClient();
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.SqlClient/tests/Tools/TDS/TDS.EndPoint/
H A DTDSClientEndPoint.cs31 private TcpClient ClientSocket { get; set; }
51 private Action<TcpClient> _funcPostConnect;
56 private Action<TcpClient> _funcTCPClientDisconnect;
70 …t, int, ushort> funcTDSStreamPreWriteCallBack, Action<TcpClient> funcPostConnect, Action<TcpClient in TDSClientEndPoint()
99 ClientSocket = new TcpClient(AddressFamily.InterNetwork); in Connect()
113 ClientSocket = new TcpClient(AddressFamily.InterNetworkV6); in Connect()
H A DTDSServerEndPoint.cs24 public override TDSServerEndPointConnection CreateConnection(TcpClient newConnection) in CreateConnection()
104 using (TcpClient client = new TcpClient()) in Start()
186 TcpClient newConnection = ListenerSocket.AcceptTcpClient(); in _RequestListener()
228 public abstract T CreateConnection(TcpClient newConnection); in CreateConnection()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/src/System/Net/Sockets/
H A DTCPClient.cs14 public class TcpClient : IDisposable class
23 public TcpClient() : this(AddressFamily.InterNetwork) in TcpClient() method in System.Net.Sockets.TcpClient
28 public TcpClient(AddressFamily family) in TcpClient() method in System.Net.Sockets.TcpClient
46 public TcpClient(IPEndPoint localEP) in TcpClient() method in System.Net.Sockets.TcpClient
64 public TcpClient(string hostname, int port) in TcpClient() method in System.Net.Sockets.TcpClient
91 internal TcpClient(Socket acceptedSocket) in TcpClient() method in System.Net.Sockets.TcpClient
278 asyncResult => ((TcpClient)asyncResult.AsyncState).EndConnect(asyncResult), in ConnectAsync()
283 …(targetHost, targetPort, callback, state) => ((TcpClient)state).BeginConnect(targetHost, targetPor… in ConnectAsync()
284 asyncResult => ((TcpClient)asyncResult.AsyncState).EndConnect(asyncResult), in ConnectAsync()
290 asyncResult => ((TcpClient)asyncResult.AsyncState).EndConnect(asyncResult), in ConnectAsync()
[all …]
/dports/devel/liteide/liteide-x37.4/liteidex/src/3rdparty/qjsonrpc/tests/manual/tcpclient/
H A Dtcpclient.cpp25 TcpClient::TcpClient(QObject *parent) in TcpClient() function in TcpClient
31 void TcpClient::run() in run()
58 void TcpClient::processResponse() in processResponse()
69 void TcpClient::processMessage(const QJsonRpcMessage &message) in processMessage()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Net.Sockets/
H A DTcpClient.platformnotsupported.cs35 public class TcpClient : IDisposable class
39 public TcpClient () in TcpClient() method in System.Net.Sockets.TcpClient
44 public TcpClient (AddressFamily family) in TcpClient() method in System.Net.Sockets.TcpClient
49 public TcpClient (IPEndPoint localEP) in TcpClient() method in System.Net.Sockets.TcpClient
54 public TcpClient (string hostname, int port) in TcpClient() method in System.Net.Sockets.TcpClient
167 ~TcpClient () in ~TcpClient()
/dports/benchmarks/super-smack/super-smack-1.3/src/
H A Dtcp_client.h23 class TcpClient
49 TcpClient() { status = 0; log = NULL; } in TcpClient() function
50 TcpClient(char* host, int port, FILE* init_log = stderr);
51 TcpClient(struct in_addr* other_serv_addr, int port, FILE* init_log = stderr);
53 virtual ~TcpClient();
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Security/tests/FunctionalTests/
H A DDummyTcpServer.cs90 protected virtual void OnClientAccepted(TcpClient client) in OnClientAccepted()
122 private void OnAccept(Task<TcpClient> result) in OnAccept()
124 TcpClient client = null; in OnAccept()
252 private TcpClient _tcpClient;
258 public ClientState(TcpClient client) in ClientState()
266 public ClientState(TcpClient client, EncryptionPolicy sslEncryptionPolicy) in ClientState()
289 public TcpClient TcpClient property in System.Net.Security.Tests.DummyTcpServer.ClientState
/dports/net/storj/storj-1.45.3/vendor/github.com/apache/thrift/lib/csharp/src/Transport/
H A DTSocket.cs31 private TcpClient client = null;
36 public TSocket(TcpClient client) in TSocket()
76 public TcpClient TcpClient property in Thrift.Transport.TSocket
209 public TcpClient Client;
210 public ConnectHelper(TcpClient client) in ConnectHelper()
H A DTSocketVersionizer.cs46 internal static TcpClient CreateTcpClient() in CreateTcpClient()
48 TcpClient client = null; in CreateTcpClient()
51 client = new TcpClient(AddressFamily.InterNetworkV6); in CreateTcpClient()
54 client = new TcpClient(AddressFamily.InterNetwork); in CreateTcpClient()
/dports/www/fabio/fabio-1.5.14/vendor/github.com/apache/thrift/thrift-da1169d75b15/lib/csharp/src/Transport/
H A DTSocket.cs31 private TcpClient client = null;
36 public TSocket(TcpClient client) in TSocket()
76 public TcpClient TcpClient property in Thrift.Transport.TSocket
209 public TcpClient Client;
210 public ConnectHelper(TcpClient client) in ConnectHelper()
H A DTSocketVersionizer.cs46 internal static TcpClient CreateTcpClient() in CreateTcpClient()
48 TcpClient client = null; in CreateTcpClient()
51 client = new TcpClient(AddressFamily.InterNetworkV6); in CreateTcpClient()
54 client = new TcpClient(AddressFamily.InterNetwork); in CreateTcpClient()
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/apache/thrift/lib/csharp/src/Transport/
H A DTSocket.cs31 private TcpClient client = null;
36 public TSocket(TcpClient client) in TSocket()
76 public TcpClient TcpClient property in Thrift.Transport.TSocket
209 public TcpClient Client;
210 public ConnectHelper(TcpClient client) in ConnectHelper()
H A DTSocketVersionizer.cs46 internal static TcpClient CreateTcpClient() in CreateTcpClient()
48 TcpClient client = null; in CreateTcpClient()
51 client = new TcpClient(AddressFamily.InterNetworkV6); in CreateTcpClient()
54 client = new TcpClient(AddressFamily.InterNetwork); in CreateTcpClient()

12345678910>>...12