Tagged Questions
1
vote
2answers
263 views
Python twisted reactor - address already in use
I'm following a tutorial http://www.raywenderlich.com/3932/how-to-create-a-socket-based-iphone-app-and-server for creating a sample using socket programming in Mac OS X enviromment.
I'm writing using ...
1
vote
1answer
191 views
Is it possible to use raw sockets with Twisted (Python)
I am writing an implementation of an NAT and have the need to use raw sockets. I have become accustomed to the Twisted architecture and like how it handles concurrent connections.
Data coming into a ...
1
vote
1answer
82 views
Is the current Python Beanstalkc client implementation non-blocking?
I'm writing a socket API using twisted framework which needs to write to beanstalkd in a deferred, is the current Python Beanstalkc client implementation non-blocking?
I've searched extensively on ...
1
vote
0answers
264 views
Reusing TCP port on twisted python
I'm trying to get this simple python chat server up and running:
http://www.raywenderlich.com/3932/how-to-create-a-socket-based-iphone-app-and-server
It's working fine, except that I have to manually ...
5
votes
2answers
208 views
Determine the current number of backlogged connections in TCP listen() queue
Is there a way to find out the current number of connection attempts awaiting accept() on a TCP socket on Linux?
I suppose I could count the number of accepts() that succeed before hitting ...
1
vote
3answers
365 views
Sending buffered images between Java client and Twisted Python socket server
I have a server-side function that draws an image with the Python Imaging Library. The Java client requests an image, which is returned via socket and converted to a BufferedImage.
I prefix the data ...
0
votes
1answer
429 views
Twisted Socket Ports and Classes
I am working on a Blackjack iPhone app that interacts with a Twisted socket to allow online gameplay. My issue at the moment is finding the right port. Let me explain.
I created a class called ...
0
votes
1answer
207 views
Run Socket Script on Multiple Ports
What I want to do is run the following script on every port, 1025+. What I am doing is making a Blackjack iPhone app that interacts with this script for online gaming. The thing is, I would want to ...
1
vote
2answers
615 views
Non-blocking UDP server in Python game?
I'm making an action game in Python. It has to support at least 2 players playing together over the Internet. I've chosen UDP since it seems to be the natural choice for low-latency games. I'm going ...
1
vote
1answer
75 views
Why does this twisted server interact wrongly with a process?
The server is at https://github.com/EmeraldHaze/Socketd/blob/master/Serv.py ; the process is at https://github.com/EmeraldHaze/QFTSOM/blob/master/main.py
A client too test this is at ...
1
vote
2answers
89 views
How do I achieve a webpush with data coming from a socket?
Here is my current code:
#!/usr/bin/env python
from twisted.application import internet, service
from twisted.application.service import IServiceMaker, MultiService
from twisted.protocols import ...
3
votes
1answer
284 views
Receiving commandline input while listening for connections in Python
I am trying to write a program that has clients connect to it while the server is still able to send commands to all of the clients. I am using the "Twisted" solution. How can I go about this? Here is ...
2
votes
4answers
1k views
Python Socket programming (TCP vs. UDP)
I'm planning to design a server that receives data from multiple clients, the server don't need to send anything back to the client, though STATUS_OK is still cool but not necessary.
I know the ...
0
votes
1answer
562 views
General question regarding wether or not use Twisted in TCP proxy project
I need to write simple but effective and scalable TCP proxy, that would accept connections on one IP:PORT and forward the data to, possibly large, number of clients listening on their IP:PORT pairs.
...
1
vote
1answer
239 views
adding a doRead() method to an existing socket object
is there any way to add a doRead() method to an existing socket object?
the socket needs a doRead method to be able to be passed to twisted's reactor via the addWriter method.
i've tried using the ...
1
vote
2answers
1k views
Difference between LoopingCall and callInThread in Python's Twisted
I'm trying to figure out the differences between a task.LoopingCall and a reactor.callInThread in Twisted.
All my self.sendLine's in the LoopingCall are performed immediately.
The ones in the ...
5
votes
4answers
2k views
Is twisted any good?
I keep hearing all this hype about Twisted for python, but i just find it plain confusing. What do you think is more simple to use? Simple sockets or implementing twisted ?
3
votes
4answers
891 views
What is the Lua equivalent of Twisted Python, Eventmachine for Ruby, NIO for Java, etc.?
What is the Lua equivalent of Twisted Python, Eventmachine for Ruby, NIO for Java, etc.?
If there is none, how does one do non-blocking event-based network I/O?
In general, how does one solve the ...
3
votes
1answer
561 views
Reading from an SSL Socket in Twisted
I'm trying to implement an SSL client in Twisted that simply must connect to a socket and read binary data (specifically, tuples of data). I've gotten the code to a point where it seems to connect and ...
2
votes
2answers
466 views
Twisted ignoring data sent from MUD Clients?
I have the following code (almost an exact copy of the Chat server example listed here:
import twisted.scripts.twistd
from twisted.protocols import basic
from twisted.internet import protocol, ...
13
votes
5answers
3k views
How do you you run a Twisted application via Python (instead of via Twisted)?
I am working my way through learning Twisted, and have stumbled across something I'm not sure I'm terribly fond of - the "Twisted Command Prompt". I am fiddling around with Twisted on my Windows ...
1
vote
1answer
2k views
Python, Asyncore and forks
Just for starters, I used Twisted and SocketServer with both ForkMixIn, ThreadMixIn and tried the "thread-pool" recepies.
However, I wanted to make something particular work in Python.
Alittle ...
0
votes
2answers
850 views
Standard way of using a single port for multiple sockets?
Hey I am writing an app in Twisted, and as it stands I have 4 servers bound two different ports all communicating with the client via JSON. Is there anyway to bind these 4 servers to the same port and ...
0
votes
5answers
685 views
What are the ways to run a server side script forever?
I need to run a server side script like Python "forever" (or as long as possible without loosing state), so they can keep sockets open and asynchronously react to events like data received. For ...
3
votes
2answers
500 views
In Twisted Python - Make sure a protocol instance would be completely deallocated
I have a pretty intensive chat socket server written in Twisted Python, I start it using internet.TCPServer with a factory and that factory references to a protocol object that handles all ...
6
votes
2answers
2k views
Is Twisted an httplib2/socket replacement?
Many python libraries, even recently written ones, use httplib2 or the socket interface to perform networking tasks.
Those are obviously easier to code on than Twisted due to their blocking nature, ...
1
vote
1answer
755 views
Python/Twisted - Sending to a specific socket object?
I have a "manager" process on a node, and several worker processes. The manager is the actual server who holds all of the connections to the clients. The manager accepts all incoming packets and puts ...
6
votes
3answers
3k views
Is it possible to set a timeout on a socket in Twisted?
I realize I'm probably just dumb and missing something big and important, but I can't figure out how to specify a timeout in twisted using reactor.listenUDP. My goal is to be able to specify a ...