Tagged Questions
0
votes
2answers
7 views
What does Python's socket.recv() return for non-blocking sockets if no data is received until a timeout occurs?
My question is already in the title. Basically, I've read in several places that socket.recv() will return whatever it can read, or an empty string signalling that the other side has shut down (the ...
0
votes
0answers
8 views
CGI python - Opening multiple sockets fails
I am using python and I use the following code:
import urllib2
def get_data(url):
usock = urllib2.urlopen(url)
data = usock.read()
usock.close()
return data
I am running a script ...
0
votes
1answer
19 views
Python _socket.socket vs socket._socketobject, how to convert from one to the other
I realised that my problem with wrapping sockets in ssl, when the socket is built from a fd is related to a socket._socketobject being converted (after rebuilding it from fd) into a socket._socket.
...
0
votes
1answer
23 views
Close listening socket in python thread
I have a problem trying to learn about sockets for network communication. I have made a simple thread that listens for connections and creates processes for connecting clients, my problem though is ...
-1
votes
1answer
35 views
Reading bytes from network socket in Python
I want to write a Python program that gets data from a network socket and then scans the data looking for particular sequences of data.
The 'getting from the network' bit works fine, and I can dump ...
0
votes
1answer
22 views
can peer A connect to peer B if server is on peer B?
As the title says, can client A connect to client B on different machines, when the server is on the same machine with client B ?
Note that the client B and server on the machine have different port ...
0
votes
1answer
39 views
Python: Multiple connects
i work on a Python Daemon that connects to multiple "Clients" and listen.
Important: The Port of the Daemon must be the same for all Clients.
class UDPReader(asyncore.dispatcher):
def ...
1
vote
1answer
23 views
TCP Socket binding timeout
I have questions about the time limit for the tcp binding socket in server side.
In my survey, I found if the tcp client socket send the close message to the server, the client will enter to ...
0
votes
1answer
37 views
Sending a chat message to a LAN game with Python
This might be a confusing question...
But take for example the game Battlefield2.
Is it in any way possible to send chat messages to the game through Python? The reason I am asking this is because ...
0
votes
0answers
20 views
Get python socket handle number
On C# i can get socket handle with function sock.Handle.ToInt32(), on python i don't known function like c#.
I'm try convert int and get error message:
sockid = int(self.client)
TypeError: int() ...
1
vote
1answer
135 views
UDP Hole Punching Not Working
I am trying to create a chat program that works by UDP hole punching and connecting directly to a node which is provided by a broker.
The script I have right now works just fine locally. The problems ...
1
vote
1answer
34 views
Python's TCPSocket vs. Asyncore
I created a simple Project with Python. It simply a server/client app. Python is server.
I created this code for my server:
import socketserver
class MyTCPHandler(socketserver.BaseRequestHandler):
...
1
vote
1answer
45 views
Handling many connection by Python [closed]
I've a client/server application. Client App will be coded on C++. On Linux we have server program. This server will handle thousands of users and millions of requests and those thousands of users ...
1
vote
0answers
30 views
Python UDP Socket Not Receiving Data
I am attempting to write a UDP chat system, but for some reason the listen() loop is not working and I can not figure out why.
import socket ...
0
votes
0answers
34 views
how to write a HTTPS tunnel server in python socket?
I am writing a HTTPS proxy server in python,
it should receive everything from client, send to the target server, and vice versa.
I found when I use Squid, client will first send a HTTP CONNECT ...
1
vote
0answers
23 views
Is it necessary to check the return value of spawn.send in pexpect?
Is it necessary to check the return value of send in pexpect?
The implementation of spawn.send(s) is using something like:
c = os.write(self.child_fd, s)
return c
Where the number of bytes are ...
0
votes
1answer
28 views
communicate with java server through python client
I'm trying to adjust the sample java code for an API to work with a python script. I know the java code works and can do a socket connection in python but can't figure out how to convert the string in ...
0
votes
1answer
30 views
python sockets and a serial to IP device
Using a Lantronix UDS-1100 serial to IP converter. The goal is to write a small proof of concept piece in Python to capture serial data output by this device over IP.
I've done a couple test ...
0
votes
1answer
49 views
Meaning of a symbol character in python
I am tring to figure what is the meaning of this character: <I in python.
As I saw in many python script who use sockets, they use this character as a "pack" and "unpack"
argument, so an ...
0
votes
2answers
28 views
python socket: winerror 10056
I've read throught this introduction to python sockets:
http://docs.python.org/3.3/howto/sockets.html
This is my server
import socket
serversocket=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
...
0
votes
0answers
52 views
Python Sockets Errno 10053 Estabilished connection aborted [closed]
I'm currently trying to transfer user message strings produced by an IRC client and read by a python script to a second script which will eventually be running as Actionscript 3 in a flash program but ...
0
votes
1answer
24 views
Trying to move a file from a python client to a c# server
I am trying to copy a jpg image from a c# server in one PC to a python client in another.
The idea is simply to read the image content:
string text = File.ReadAllText(newPath);
//or
...
1
vote
1answer
78 views
peer to peer simple python chat program
I writing a simple peer to peer chat program that allows the server to send and receive message to the client. The client can send message to server but when I try sending a message from the server, ...
0
votes
0answers
35 views
why error when searching for nodes in parallel python?
I really need some help so please answer. I installed pp on my laptop an on my virtual machine both use ubuntu.
i can ssh to the virtual machine so the connection to it is fine but still i am not able ...
2
votes
1answer
99 views
Client socket not receiving data correctly
I've tried looking about for an answer but I can't seem to find one that answers my specific problem.
Perhaps I don't know how to articulate the problem correctly.
I think I've pinpointed what it ...
0
votes
1answer
27 views
Python program sending data via sockets, what OSI layers?
In Python I have been playing around with server sockets that listen for messages, and client socket connections that send the data to the server.
Am i correct in thinking that the server/client ...
0
votes
1answer
42 views
Embedded Python in C++ socket programming
Can i not send and receive UDP packets in a single python embedded C++ program in which send and receive scripts run in different threads?
I get an unhandled exception when the exe file is run. When ...
2
votes
2answers
46 views
Python Flask Socket Error (new to Linux environment)
This is likely a quick fix but I have run into a standstill and I hope you can help. Please bear with me, i'm not fluent in the command line environment.
I'm just beginning with using the Python ...
-3
votes
1answer
42 views
python sockets receive binary data
I'm having a trouble with receiving binary data to my server (python).
It seems that the OS (WIN7) sending big data in several packets without "permission",
so when im trying to send from my client ...
0
votes
0answers
22 views
define a proxy server using socket
I have a program in python that uses socket to send and retrieve data through the internet.
The program runs, but throws an exception, and i think it's because the proxy server.
I googled a bit and ...
2
votes
1answer
55 views
select-based socket loop without polling
I'm having problems writing a thread that transfers data between IO buffers and a socket. I don't have any problems getting it to run, but not the way I want it to. Here's a sketch of the code:
s = ...
0
votes
0answers
26 views
how to make my tcp socket use a socks4/5 proxy
I first make a socket with something like this:
self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
Now i want that socket to send the packet to the proxy server which will then ...
0
votes
0answers
43 views
Python / MySQL / Can't create TCP/IP socket (24)
After some hours of operation my python script is spitting the following message.
ERROR protocol # [Failure instance: Traceback: <class '_mysql_exceptions.OperationalError'>: (2004, "Can't ...
1
vote
2answers
36 views
What is 4sL format in struct.pack Python
I am new to python and my first program is to write a code for receiving multicast packets.
I got this code for example and similar codes everywhere.
import socket
import struct
sock = ...
0
votes
2answers
40 views
Python - connection.close() - SyntaxError: invalid syntax
I am trying to create quote of the day server, and I am having a problem with sockets. My program code is below:
#!/usr/bin/python
from socket import *
from ConfigParser import *
import sys
import ...
0
votes
0answers
15 views
Properly configuring signal.setitimer()
I'm having a bad time figuring why the program is pausing indefinitely, i.e. exhibiting infinite-loop-like behavior
def class foo():
'''
...
'''
def __catcher(self, signum, _):
...
-1
votes
0answers
40 views
Socket issues, no sending or receiving of packets over multiple pc's
It only recieves or sends packets when we move the pygame window or exit the pygame window... need help trying to figure out why... Not all of the code is ours and our code works properly when running ...
0
votes
2answers
26 views
Python: Interrupting sender with incoming messages
I'm working with socket, asynchronous event-driven programming. I would like to send a message, once I receive a response, send another message. But I may be doing something besides listening. That ...
0
votes
0answers
44 views
Too many open files. Python multiprocess TCP server
I am writing tcp server on Python. Os - ubuntu 12.04
The server is multiprocess. Main process is accepting connections. Accepted socket reduced and sent to the worker:
<main process>
h = ...
0
votes
0answers
49 views
Telnet Connection Pooling
Background: I'm currently trying to develop a monitoring system at my job. All the nodes that need to be monitored are accessible via Telnet. Once a Telnet connection has been made, the system needs ...
0
votes
2answers
50 views
Python socket (Socket Error Bad File Descriptor)
The following receiveFile() function reads a filename and file data from the socket and splits it using the delimiter $.
But I am unable to close the socket and a Bad file descriptor error is raised. ...
2
votes
1answer
45 views
Python Socket (How to seperate FileName From File contents)
I have written two client and server python scripts were server is listening for client to send files following is my server code for listening files. The problems with the code i cannot separate ...
0
votes
0answers
107 views
Sending an image through a socket from python to android
I currently have a python socket server that captures from a webcam using opencv. I have converted the captured image using image.tostring();
I am trying to send this image to an android application ...
1
vote
1answer
27 views
Finding ip address using python's socket module
When I run the following command to get the host ip:
socket.gethostbyname(socket.gethostname())
I am getting the following error on MAC terminal:
socket.gaierror: [Errno 8] nodename nor servname ...
0
votes
0answers
28 views
PyQt4 QTcpServer handling SSL connections
I am very new to Python and in fact all programming, but I'm trying to make a GUI with PyQt4 that receives ssl connections from a server.
Qt seems to only offer a TCP server to accept connections. ...
1
vote
1answer
73 views
Experimental Sockets API in Google App Engine for SMTP connections
With the recent release of App Engine 1.7.7, it is finally possible to make outbound connections with TCP or UDP sockets. This opens a whole world of new possibilities.
Using import socket in Python ...
0
votes
1answer
54 views
Sending a string over Python server to C# client returns a number of the chars in the string
So I've been trying to create a simple chat program with python, but it's a combination of Python and C#... The server is built entirely out of Python and the client is C#. I use sockets for both of ...
1
vote
1answer
93 views
Python Socket Library, Errno 10054 When Client Quits
So I'm messing around with a very simple echo server/client kind of deal. I'm eventually going to be making a game server, but for now I'm just trying to setup the basic parts.
Here's the server: ...
2
votes
2answers
52 views
Reliably get IPV6 Address in Python
at the moment I do:
def get_inet_ip():
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(('mysite.com', 80))
return s.getsockname()[0]
This was based on:
Finding local IP ...
1
vote
0answers
50 views
How to recycle a TCP port after server being killed?
I use python to write a simple RPC server, which listens on port 80.
The OS is windows 7.
In case some errors occur, the server got stuck and it will be killed and then restarted. But when it is ...



