aboutsummaryrefslogtreecommitdiff
path: root/interact/__init__.py
blob: 0f08de18e7d736c6a90e8f9ca3081ee33421273f (plain)
1
2
3
4
5
6
7
8
9
import grpc
from . import l2cap

GRPC_PORT = 8999

def run(profile: str, interaction_id: str, pts_addr: bytes):
    channel = grpc.insecure_channel(f'localhost:{GRPC_PORT}')
    if profile == "L2CAP":
        l2cap.interact(channel, interaction_id, pts_addr)