11
votes
2answers
439 views

Can writing to a UDP socket ever block?

And if so, under what conditions? Or, phrased alternately, is it safe to run this code inside of twisted: class StatsdClient(AbstractStatsdClient): def __init__(self, host, port): ...
-2
votes
1answer
104 views

Can Twisted Library be used for a LAN Messenger Development?

I am trying to develop a simple LAN Messenger which discovers other clients on the network and helps communicate with them. Can I use twisted Library to achieve that???
2
votes
1answer
152 views

How to get Multicast Group Address from datagramReceived in Twisted?

This is the following code example from Twisted for dealing with receiving of multicasts. I currently am listening to many groups with the same client and I want to be able to print out which group a ...
2
votes
1answer
284 views

Is this python code thread safe (thread with twisted)?

I am writing an application to collect UDP messages and process them every 1sec. Application prototype looks like: from twisted.internet.protocol import DatagramProtocol from twisted.internet import ...
2
votes
1answer
54 views

What kind of server type is most appropriate for a “validation server”?

I'm writing a server and client system in python. The purpose of the system is to check whether or not the clients are online. The clients will periodically make a request to the central server to ...
0
votes
1answer
140 views

How to implement retransmissions in Twisted UDP-based application

I want to write a UDP based app which needs to retransmit packets that are not confirmed by remote host. I assume there are two possible approaches: Use reactor.callLater() for every packet sent by ...
1
vote
2answers
612 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 ...
2
votes
1answer
582 views

UDP flow control with Python Twisted

I have a class that inherits from twisted.internet.protocol.DatagramProtocol class. In my startProtocol() implementation I call startWriting(), so that socket gets notified each time I can write to it ...
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 ...
1
vote
2answers
2k views

UDP Tuning using Tcpreplay

I'm working on a project which uses Twisted to provide a high performance UDP server capable of handling burst traffic of 5k packets / second, with packet ranging in size from 50 to 100 bytes. The PC ...
3
votes
1answer
585 views

Raw UDP packets using Twisted

I'm currently using Twisted 10.1 to receive and parse UDP packets, but the standard implementation of reactor.listenUDP() only gives me access to the packet data, and I need to get the packet length ...
0
votes
1answer
460 views

Async UDP Server with Twisted and QT4

this is the first time I write here. I apologize if my English is not so good. I want to set up a simple UDP server in Python using Twisted. The GUI is QT4-based and I need to run the application both ...
2
votes
2answers
628 views

how can i make the server listen for TCP and UDP?

i'm using python twisted and i have two separate servers working, one that recieves TCP, one that receives UDP and they each use reactor.listenTCP(PORT, factory) reactor.run() and ...
3
votes
1answer
382 views

Is there a way to resend UDP packets using Twisted?

Problem: Simple UDP proxy - receive UDP packets from multiple sources on port X and forward (resend) them to IP Y on port Z. Description: I am able to create a simple UDP server using twisted, and ...
4
votes
2answers
5k views

UDP client and server with Twisted Python

I want to create a server and client that sends and receives UDP packets from the network using Twisted. I've already written this with sockets in Python, but want to take advantage of Twisted's ...
2
votes
1answer
539 views

Outgoing UDP sniffer in python?

I want to figure out whether my computer is somehow causing a UDP flood that is originating from my network. So that's my underlying problem, and what follows is simply my non-network-person attempt ...
1
vote
2answers
339 views

Question regarding UDP communication in twisted framework

I would like to find out if Twisted imposes restriction on maximum size of UDP packets. The allowable limit on linux platforms is upto 64k (although I intend to send packets of about 10k bytes ...
1
vote
0answers
373 views

py2exe twisted outcoming udp packet

I've developed an application for Windows that use wxPython and twisted. The issue is that if I run the app using the Python interpreter everything is OK (I could receive and transmit UDP packets). ...
2
votes
2answers
444 views

Twisted Spread suitable for multiplayer racing sim?

Do you think that Twisted Spread may be suitable (in terms of performance) for a multiplayer racing simulator? The rest of the application is based on Python-Ogre. Can Perspective Broker run upon ...