Commit Graph

4 Commits

Author SHA1 Message Date
Juhani Krekelä 8cbaa722b1 Parallerize request processing 2021-10-15 12:50:33 +03:00
Wolfgang Müller c29417f726 Properly handle AF_INET6 requests
Socket addresses in the Python socket interface are represented in
multiple different ways according to the socket family. Both AF_INET and
AF_INET6 families use tuples with the host as the first element.

Currently we extract the host from the first element of such a tuple,
and ignore the other element. Since AF_INET6 has four elements, this
will fail with a ValueError.

To support AF_INET6 requests, make sure to store whatever is left of the
tuple in a list instead.
2021-10-15 12:41:04 +03:00
Juhani Krekelä cc26741d9c Add hashbang 2021-10-14 23:49:46 +03:00
Juhani Krekelä ab2a3879b1 First commit 2021-10-14 23:43:21 +03:00