Relative Content

Tag Archive for sockets

faster method of testing uwsgi + nginx

Im currently looking for a way to test a lot of requests in the shortest amount of time possible on my web application. My current workaround is to just import the modules I want to test into another python file and shoot requests directly into those functions, but I’d rather have it go through the web server framework as it normally does when live. My issue with that is going through all of these requests using HTTP protocol takes too long for my liking.

Socket connection to external IP through server

I am working on an application using sockets. Essentially I want to stream data between two clients. Since I can’t connect the two clients together directly (they aren’t on the same network), I will need to connect the two through a server.

Socket connection to external IP through server

I am working on an application using sockets. Essentially I want to stream data between two clients. Since I can’t connect the two clients together directly (they aren’t on the same network), I will need to connect the two through a server.

listening to packets in promiscuous mode

I am working on an application that get packets that don’t belong to the pc,so i use promiscuous mode on my NIC,i need to read the packet and and handle it.

listening to packets in promiscuous mode

I am working on an application that get packets that don’t belong to the pc,so i use promiscuous mode on my NIC,i need to read the packet and and handle it.

String sentence consistency when sent over sockets

I am learning socket programming. I have a Java application as my server, and C# for the client. Just sending string lines from one to another. Below I have code snippets showing how I am currently doing it.

String sentence consistency when sent over sockets

I am learning socket programming. I have a Java application as my server, and C# for the client. Just sending string lines from one to another. Below I have code snippets showing how I am currently doing it.