无法让 C# 服务器与同一网络上不同计算机上的 Python 客户端很好地配合使用

Unable to get C# server to play nicely with Python client on separate computers on same network

关于为什么我无法让同一网络上的统一 C# 服务器和 python 客户端正常运行有什么想法吗?

C# 服务器

using System;
using System.Net;
using System.Net.Sockets;
using System.Text;

using System.Threading;

using UnityEngine;

public class Wiiboard : MonoBehaviour
{
    public int port;

    public void StartClient()
    {
        TcpListener server = null;
        try
        {
            IPAddress localAddr = IPAddress.Parse("0.0.0.0");

            // TcpListener server = new TcpListener(port);
            server = new TcpListener(localAddr, port);

            // Start listening for client requests.
            server.Start();

            // Buffer for reading data
            Byte[] bytes = new Byte[256];
            String data = null;

            // Enter the listening loop.
            while (true)
            {
                Debug.Log("Waiting for a connection... ");

                // Perform a blocking call to accept requests.
                // You could also use server.AcceptSocket() here.
                TcpClient client = server.AcceptTcpClient();
                Debug.Log(String.Format("Connected!"));

                data = null;

                // Get a stream object for reading and writing
                NetworkStream stream = client.GetStream();

                int i;

                // Loop to receive all the data sent by the client.
                while ((i = stream.Read(bytes, 0, bytes.Length)) != 0)
                {
                    // Translate data bytes to a ASCII string.
                    data = System.Text.Encoding.ASCII.GetString(bytes, 0, i);
                    Debug.Log(String.Format("Received: {0}", data));

                    // Process the data sent by the client.
                    data = data.ToUpper();

                    byte[] msg = System.Text.Encoding.ASCII.GetBytes(data);

                    // Send back a response.
                    stream.Write(msg, 0, msg.Length);
                    Debug.Log(String.Format("Sent: {0}", data));
                }

                // Shutdown and end connection
                client.Close();
            }
        }
        catch (SocketException e)
        {
            Debug.LogError(String.Format("SocketException: {0}", e));
        }
        finally
        {
            // Stop listening for new clients.
            server.Stop();
        }

        Debug.Log(String.Format("\nHit enter to continue..."));
        Console.Read();
    }

    // Start is called before the first frame update
    void Start()
    {
        Thread t = new Thread(new ThreadStart(StartClient));
        t.Start();
    }
}

python 客户:

HOST = '192.168.0.38'  # The server's hostname or IP address
PORT = 25565        # The port used by the server

#https://realpython.com/python-sockets/
def client():
    with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
        print(f"CLIENT >>> waiting to connect to {HOST}:{PORT}")
        s.connect((HOST, PORT))
        s.sendall(b'Hello, world!<EOF>')
        data = s.recv(1024)

    print('CLIENT >>> Received', repr(data))

[other, entirely irrelevant code. just stuff for the wiiboard]

client()

对于上下文,我正在尝试从连接到我的笔记本电脑的 Wii 平衡板中继数据(windows 不能很好地玩这个板,VR 不能很好地玩 Linux 正如我所听到的)到我的桌面通过套接字连接到统一。当我的笔记本电脑 运行ning windows 时,我的插座没有问题,但由于我必须为此在笔记本电脑上 运行 Linux,它停止播放很好。

我 运行在我的笔记本电脑上 运行 宁 python 客户端 运行宁 ubuntu 18.08 LTS 我 运行宁 C# 服务器我的 windows 10 个统一桌面。

显然这里的代码没有错误,但这留下了问题,什么是?

我的问题的解决方案是使用 This helpful resource

添加防火墙例外