Я пытаюсь создать онлайн-игру на Python, и в настоящее время я работаю над файлом сервера и сетевым классом (отвечающим за соединение сервера с клиентом).Всё шло хорошо, но я пытался отправить что-то из сетевого файла обратно на сервер, но это не работает.
Я попытался поместить это в цикл try / Кроме того, и он напечаталОшибка.Теперь консоль распечатывает это.
None
[WinError 10057] A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied
A fine day to you my friend!
None
Process finished with exit code 0
Файл клиента:
import socket
IPV4 = socket.AF_INET
TCP = socket.SOCK_STREAM
SERVER = "192.168.1.77" # Replace with the ip address of the server
PORT = 5555
BITS = 2048
class Network:
def __init__(self):
self.client = socket.socket(IPV4, TCP)
self.server = SERVER
self.port = PORT
self.address = (SERVER, PORT)
self.id = self.connect()
print(self.id)
# So the idea is that when we decode the message on line 30 (rewrite this later), it will give us the string
# "Connected" to self.id, as it calls the function self.connect, which returns the message.
# self.id # This would be so that we could give an id to each player, and send specific things to each player
def connect(self):
try:
self.client.connect(self.address) # Connects our client to the server on the specified port
return self.client.recv(BITS).decode()
# Ideally when we connect we should send some form of validation token
except:
pass
def send(self, data):
try: # I think the problem is here!!!!
self.client.send(str.encode(data))
return self.client.recv(BITS).decode()
except socket.error as e:
print(e)
print("A fine day to you my friend!")
n = Network()
print(n.send("hello"))
# print(n.send("working"))
Проблема связана с функцией отправки, если я не ошибаюсь.Ошибка, которую я получаю, является результатом моей попытки закодировать и отправить данные (self.client.send (str.encode (data)). Затем выдается сообщение об ошибке выше.
Код сервера:
import socket
from _thread import *
import sys
SERVER = "192.168.1.77" # (For now) the private ipv4 address of my computer (localhost)
PORT = 5555
MAX_PLAYERS = 2
BITS = 2048
IPV4 = socket.AF_INET
TCP = socket.SOCK_STREAM
# Setting up the socket
s = socket.socket(IPV4, TCP) # The arguements are the address family and socket type.
# AF_INET is the address family for Ipv4, and SOCK_STREAM is the socket type for TCP connections
try: # There is a chance that the port may be being used for something, or some other error may occur. If so, we want to find out what
s.bind((SERVER, PORT))
except socket.error as e: # This will
str(e)
s.listen(MAX_PLAYERS) # Opens up the port for connections
print("Waiting for a connection, Server Started")
def threaded_client(connection):
connection.send(str.encode("Connected")) # Sends an encrypted message to the client
reply = ""
while True:
try:
data = connection.recv(BITS)
reply = data.decode("utf-8") # Decodes the encrypted data
if not data: # If we try to get some info from the client and we don't, we're going to disconnect
print("Disconnected")
break # and break out of the try loop
else:
print("Received: {}".format(reply))
print("Sending: {}".format(reply))
connection.sendall(str.encode(reply)) # Sends our encrypted reply
except:
break
# Add possible errors when they occur
print("Lost connection")
connection.close()
while True:
connection, address = s.accept() # Accepts incoming connections and stores the connection and address
# Note: the connection is an object and the address is an ip address
print("Connected to {}".format(address))
start_new_thread(threaded_client, connection)
В идеале, результаты (при условии, что я запустил файл сервера, и он работает без ошибок) следующие:
Connected
hello
Чтобы объяснить немного дальше ..Причина, по которой я получаю сообщение «Подключен», заключается в том, что в методе подключения я получаю зашифрованное сообщение с сервера, которое я декодирую и возвращаю в self.id. Затем печатается self.id, и, следовательно, показывает, что оно подключено к серверу..