From d424c96eaf146ce50b4c1c2b5b3940f581bb53b6 Mon Sep 17 00:00:00 2001 From: Kuba <132459354+KubaPro010@users.noreply.github.com> Date: Thu, 16 Nov 2023 14:53:40 +0100 Subject: [PATCH] network fifo --- fifohost.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fifohost.py b/fifohost.py index db813c1..4beb150 100644 --- a/fifohost.py +++ b/fifohost.py @@ -1,3 +1,4 @@ +#this is for pifmrds, if you have a service that interacts with the pipe from the network, you can use this, just make sure you `mkfifo tctl` and pass the `-ctl tctl` to pifmrds :) import socket import os import threading @@ -12,8 +13,6 @@ server = socket.socket(socket.AF_INET, socket.SOCK_STREAM) server.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) server.bind((server_ip, server_port)) server.listen(5) # Allow multiple connections - -print("R27 NRDSOS 1.1 (THIS IS AN INTERNAL APP USED IN R27'S INTERNAL RDS SERVICE)") print("Listening for incoming connections...") def handle_client(client_socket):