All Questions
Tagged with socket python-2.x
7 questions
4
votes
0
answers
301
views
Simple chat server in Python
I'm new to both Python and socket programming and figured setting up a simple chat server would be good practice. In addition to general critiques of the code, I have specific questions:
What are the ...
7
votes
2
answers
12k
views
Protocol implementation, TCP, sending images through sockets - follow-up
I would like to ask about your opinion about my code. The idea is simple: I designed my own protocol, where client asks server about the image, and the server sends the image, following the below ...
10
votes
1
answer
4k
views
Network protocol using TCP, sending images through sockets
I would like to ask about your opinion about my code. The idea is simple: I designed my own protocol, where client asks the server about the image, and the server sends the image, following the below ...
4
votes
1
answer
128
views
Let's check that domain port
Intro
This simple script will allow me to check for a specific opened port on a list of domains that I own. Instead of manually doing this check, I found Python a pretty good idea for such a task.
...
3
votes
2
answers
16k
views
Find available ports on localhost
I'm writing code to find the available ports on 127.0.0.1. I'd like it to be faster, but it's functional now.
...
8
votes
1
answer
3k
views
Python Socket Receiver
I put this together and am having some doubts to the number of connections I can make. I also doubt if I can brute force the server to serve up connections and then hang.
Please take a look and tell ...
3
votes
1
answer
3k
views
2 way communication Python socket
I'm trying to create a 2 way communication socket in python. The socket will listen for connections from the client until it gets the data formatted in string like this: 'PHONENUMBER|STATUS'. I will ...