Problem I have a small function in Objective-C which uses the C Socket API to check if the device has […]
Tag: socket
Java Networking Framework
Problem So I’ve just written a framework that is supposed to make it easier to create a network-based application (client-server) […]
Android TCP server that maps data to an object and sends it to a service
Problem This is a code for an android thread. This is a tcp server and gets data from socket, maps […]
Simple TCP client-server solution
Problem I have implemented a simple client-server solution using Java sockets and useful classes from java.util.concurrent. The communication protocol is […]
TCP chat room in Python 3
Problem I’ve created a server file, that keeps waiting for clients. When someone connects to the server, he can send […]
Python Making Bruteforce Password Crack Faster
Problem I made a simple password cracker using Python. But it’s extremely slow. Here is my code: import itertools import […]
One to One network file transfer code C# socket based
Problem I have been developing a piece of software which has a central computer talk to many smaller nodes with […]
Listening for several connections in an async method
Problem Is there a better way to structure a method that returns a task that queues several inbound socket connections? […]
Python bot to answer mathematical questions for a remote server
Problem The MSP Tech Club puts on an annual CTF, available here. I’ve worked on a solution but was wondering […]
Handling incoming socket data
Problem Below I have some code that I use to handle incoming socket data, this is not full thing but […]