You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
432 B
14 lines
432 B
"""
|
|
Associate a physical transport layer with a protocol.
|
|
|
|
Author: Georg Hopp <ghopp@spamtitan.com>
|
|
"""
|
|
from DatagramService import DatagramService
|
|
|
|
class DatagramEntryPoint(DatagramService):
|
|
def __init__(self, transport, protocol, read_chunk_size=8192):
|
|
super(DatagramEntryPoint, self).__init__(
|
|
transport, protocol, read_chunk_size)
|
|
self._transport.bind()
|
|
|
|
# vim: set ft=python et ts=8 sw=4 sts=4:
|