From 2af4f3e3e7041dcb6dda802c2422bd8d17ecf7f5 Mon Sep 17 00:00:00 2001
From: Jonathan Ehret <ehret@vr.rwth-aachen.de>
Date: Fri, 31 Mar 2023 14:17:46 +0200
Subject: [PATCH] Change size of file meta info to receive, since otherwise it
 had problems with long file paths

---
 LaunchScript/VirtualAcousticsStarterServer.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/LaunchScript/VirtualAcousticsStarterServer.py b/LaunchScript/VirtualAcousticsStarterServer.py
index 68d4158..0784648 100644
--- a/LaunchScript/VirtualAcousticsStarterServer.py
+++ b/LaunchScript/VirtualAcousticsStarterServer.py
@@ -384,7 +384,7 @@ class VirtualAcousticsLauncher:
   def listen_for_requests(self):
     while True:
       try:
-        sResult = self.oLauncherConnection.recv( 128 )
+        sResult = self.oLauncherConnection.recv( 512 )
 
         if sResult != '':
           #check whether we are about to reveive a file
-- 
GitLab