fanar
fanar

Reputation: 611

Twisted multiple protocols

I am looking to learn twisted for a project I am working on. The project would require the server to respond to HTTP requests as well as other protocols over a TCP connection. Is twisted capable of handling multiple protocols at the same time? I want to use Twisted Web to help with the HTTP, but at the same time need to respond to TCP connections over other ports.

Upvotes: 4

Views: 1468

Answers (1)

Etienne
Etienne

Reputation: 12580

Definitely, yes. Twisted is a really good choice for this kind of needs, when multiple protocols need to work together.

Look at this question for great learning references.

Upvotes: 3

Related Questions