aboutsummaryrefslogtreecommitdiffstats
path: root/python/trx/udp_link.py
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2017-10-17 06:52:01 +0700
committerPiotr Krysik <ptrkrysik@users.noreply.github.com>2017-11-05 17:33:26 +0100
commit873e44e68d188b5c26621b8ee8fd0c33bf9bd29d (patch)
treec535e21b6562918b240f9a022e7d41ff4cbe7613 /python/trx/udp_link.py
parent52917b1034051d97b29db8b024de1603d58c306c (diff)
python/trx: follow GNU Radio class naming conventions
Diffstat (limited to 'python/trx/udp_link.py')
-rw-r--r--python/trx/udp_link.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/trx/udp_link.py b/python/trx/udp_link.py
index 0d90ec9..584a6ac 100644
--- a/python/trx/udp_link.py
+++ b/python/trx/udp_link.py
@@ -25,7 +25,7 @@
import socket
import select
-class UDPLink:
+class udp_link:
def __init__(self, remote_addr, remote_port, bind_port):
self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
self.sock.bind(('0.0.0.0', bind_port))