So I have an image processing algorithm doing crack detection written in Python and I want to have this work on the Hololens (in Unity). I don't have any experi
Working on a simple port scanner that allows user to input an IP address as well as a set of ports to scan through ie a lower boundary port and an upper boundar
I have a fairly simple http client using libevent's evhttp functions. It works almost perfectly, but it eventually fails with 'too many open files'. The client
I am using python and socket, I want to use a proxy list, but I am not estbalishing a http connection(Or am I??), but I am using it to ping a ip, I would like t
Consider: python -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect(("10.0.0.1",1234));os.dup2(s.fileno(),0); os.dup2(
I want to split up the following workflow of a C++ program: Read serialized data (1 sec, which is already very fast for that size) Search data (0.01 ms) Return
I'm trying to learn about sockets, and most simple examples online have either the client or server doing most of the send()'ing and the other doing most of the
I'm trying to send a simple message from my mobile to my laptop through socket programming in python. I'm using win 10 and python 3.7.4 on my laptop. I am also
In my case, the member variable is socket. But this question can be general for any member variable which needs some operations before the object is deleted. I
hello everyone thanks for reading this , is it possible to send video stream from client side to nodejs server then save it to a file each time there is a new c
I just started using Postman. I had this error "Error: socket hang up" when I was executing a collection runner. I've read a few post regarding socket hang up a
I am trying to create a simple Io-web-chat. I recently wanted to seperate my <script> inside my html file to an external js file. this is my very simple
Till now I have a Server, Client1 and a Client2. The code works all fine and you can send messages between each Clients. The output looks something like this (b
As socks5 rfc says, A UDP association terminates when the TCP connection that the UDP ASSOCIATE request arrived on terminates. I wonder, doesn't "the TCP conn
Trying this code: import socket mcast_group = "239.255.0.1" mcast_port = 4444 sock_rx = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) sock_rx.setsockopt(sock
I need to send HTTP POST request using ESP32 module, to my REST API server which coded using python. But when running following code, an error comes. Running on
Earlier it was working with the same code but after a while it started throwing exception and the this error.. I don't fully understand how sockets work but I w
I use node.js with the NET class to connect multiple Rasperry Pi's. //Server const net = require('node:net'); const server = net.createServer(); //Client c
In the docs, there is a function to create a socket via a path, it's socket.connect(path[, connectListener]) link I tried this: var net = require('net'),
I am quite new to network programming and have been trying to wrap my head around this for quite sometime now. After going through numerous resources over the i