I am new to working with sockets, and I am working on this project where a connection between my android flutter app and a java server is needed, to do this I a
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
I would like to use two sockets of a node, for two separate mpirun on single job submission, like this: socket ---- 0 ---- ---- 1 ----
How do I bind an inet socket to localhost (127.0.0.1) in Standard ML? I came up with Socket.bind (socket, INetSock.toAddr (valOf (NetHostDB.fromString "127.0.0.
I create an UDP socket with the Socket module and version: 6. I want it to listen only to IPv6 (by default, version: 6 listens on both v4 and v6). Erlang's inet
Im getting " Expected an assignment or function call and instead saw an expression" error at the seconduse effect, it finds the socket port correctly, am i perf
I'm building a widget that listens for UDP packets on the network and then updates the child widgets accordingly. I'm not sure where to put the init code for th
I am recently working on a tiny program aimed to close the browser remotely. The basic procedures are as follow: Server side: Create a SocketServer to listen to
Tying push the data from my application to local server. public class MainActivity extends AppCompatActivity { Socket socket; private static final String SER
I created a slack app with socket mode and I have one question about distributing my app: If I want to publicly distribute my app, I know that " Apps using Sock
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
If a process was abruptly stopped by using "kill" command and due to that it wouldn't delete the UDS sockets that were created by that process. In such cases, c
import socket target_host = "127.0.0.1" target_port = 80 # create a socket object client = socket.socket(socket.AF_INET, socket.S
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 have one error here that I don't know how to solve and didn't find a working solution on the Internet. I have a NodeMCU 12 E. and I want to transfer data from
When I leave my program running for a few hours and then send a message to the bot it doesn't reply and after a while it generates the following error. Tracebac
I am using httpoison which uses Hackney under the hood to make HTTP requests. By default, Hackney uses a default connection pool which is created with - connect
The scanner is highlighting the below line as security hotspot. mysocket = ssl.wrap_socket(http_server.socket, keyfile=self.keyfile, certfile=self.certFile, ser
Lately I've been learning something about blockchain and I decided to try to make one in c++, without libraries that were made specifically for that, just with
Me and my team are building a VR game for the Quest 2 with Unity written in C#. We have a program that is the server that is written in JavaScript (Node.JS), th