I have a situation in which I'm being fed data via UDP on a pre-defined port (let's say 20001). My goal is to make that same data accessible to multiple clients
I want to use tcp for packets of data, not streams, but will it work with simultaneous sending? Will i get new independent socket with independent buffer? I mea
Community, I want to use/subscribe a pub-socket on a server that implements ZeroMQ (https://zeromq.org/) My final product will be a flutter app. It must be runn
I have a client server model. 192.168.77.6 is the client (my code). 192.168.77.18 is a server device. I am sending a request to the server for a response. Once
Update With the added pthreaded C client, the problem is recreated, indicating the long connection times are part of the TCP protocol, rather than specific impl
I have two apps sending tcp packages, both written in python 2. When client sends tcp packets to server too fast, the packets get concatenated. Is there a way t
I have created a rust tcp server framework. (https://github.com/HasinZaman/SingleThreadServer) The framework works fine without any issue on my local machine; a
I am creating firefox extension, and trying to test using official firefox documentation here: https://extensionworkshop.com/documentation/develop/developing-ex
Based on my knowledge , I believe following statements are true. Router can only redirect packet and can interact upto network(internet layer) only. NAT maps th
I am trying to create a timeout for a socket in powershell and I have encountered a problem that I do not know how to solve even after many hours of Google sear
I have a TCP request response model in C# where I am communicating with a server. Once the server has written data to the stream, I am reading that data. But st
When I read this opensource code. I have two questions about the two functions: func listenTCP() { for { conn, err := tcpListener.Accept() i
Given a C++-application running on a linux-pc. It has an integrated webserver associated with one thread. Considering that, is it possible to have more than one
One of our public IP addresses can't connect to Google 35.208.x.x web sites but they can ping. Other IP's on same public subnet connect fine.
I'm following the quickstart local development setup on an Ubuntu v20 machine I'm getting the following error on dfx deploy: An error happened during communicat
I am learning how to write a http server using tcpstream with rust. I use this function to read stream buffer. fn handle_connection(mut stream: TcpStream) {
I am required to send a tcp acknowledgement to a message from a server within 2000ms, else the socket connection will be closed by the server. How do I ensure t
Code: while(true) { Int32 port = Convert.ToInt32(Port); TcpClient client = new TcpClient(server, port);
I have created a class(object) connection_manager using socket TCP in a module (connection.py): #file connection.py HOST = "127.0.0.1" # Standard loopback inte
I would like to create a TCP connection between a HoloLens2 (Client) device and my PC (W11, server). I already tested this app on another HoloLens2, the connect