summaryrefslogtreecommitdiff
path: root/netdisco/discoverables/enigma2.py
blob: 17ee34a9bcaca104a091d712d9e76d8ea3a6a20e (plain)
1
2
3
4
5
6
7
8
9
10
"""Discover Enigma2 servers."""
from . import MDNSDiscoverable


class Discoverable(MDNSDiscoverable):
    """Add support for discovering Enigma2 boxes."""

    def __init__(self, nd):
        """Initialize the Enigma2 discovery."""
        super(Discoverable, self).__init__(nd, '_e2stream._tcp.local.')