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
I'm trying to follow this GeekForGeeks tutorial on mac M1 via emulator but I'm seeing this error Unhandled Exception: SocketException: OS Error: Connection refu
I did create a program that listens on a port and prints the message out on the terminal. My problem is, that I want to connect with telnet (telnet localhost 13
Hi I want to implement a ring of sockets .For example IP address 127.0.0.1 listens to 127.0.0.3 and this one listens to 127.0.0.2. They are supposed to share so
In a python-written server with TCP socket defined as follows: def create_tcp_socket(bind_address): sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
After forcing off the "Local line editing" at Putty (Raw mode), all chars typed are sent to the server without the Enter (checked it with Wireshark). I have thi
I am learning linux socket programming, I expect that server can read data, even I add a delay but it just drops the buffer data, and receive the recent data, t
I am trying to implement the video call functionality in socket io. The issue is that wheneverthe previously joined user lefts the call, his video is not remove
I am making a Nodejs Multiplayer game. PROBLEM: After a period of time, around a few seconds, the latency between the server to client skyrockets. Not just a li