Questions tagged as 'socket'

1
answer

How to send images via socket in Python?

So there's the server: import socket from PIL import Image port = 8000 host = '127.0.0.1' s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.bind((host, port)) s.listen(5) while True: conn, addr = s.accept() print('Conectado a...
asked by 14.11.2018 / 03:08
2
answers

Delphi Seattle problems with Sockets

[Delphi Seattle] I have a unit that has uses in Sockets (from a source that was in Delphi XE2), uses does not recognize ... does anyone know how to proceed? Note: Ai without this uses I have more problems because it does not recognize the TCusto...
asked by 26.10.2018 / 15:08
1
answer

Return HD size and free space for client-server

I would like to return to the client HD size information beyond the available space. Client Code import socket, pickle HOST = 'localhost' PORT = 9991 udp = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) dest = (HOST, PORT) msg = input('En...
asked by 04.09.2018 / 09:23
1
answer

Is it possible to have multiple connections on a single socket?

The following code allows only one client and not several at the same time. Is it possible to create something, leave multiple clients connected? $socket = socket_create( AF_INET , SOCK_STREAM , SOL_TCP ); socket_bind( $socket , 'localhost' ,...
asked by 27.04.2018 / 01:59
1
answer

Infinite wait for server response using sockets in python

I'm trying to send a message to the API of a server in order to get a response. I'm using the following code: import socket sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) server_address = ('h68.p.ctrader.com',5211) sock.connect(serve...
asked by 24.03.2018 / 02:35
1
answer

Unable to read data from the transport connection: Connection reset by peer

Follow the code: here . The client code is getting an exception:    Unable to read data from connection: Connection reset by   peer. Why this error? And how can I fix it?     
asked by 26.03.2018 / 16:34
1
answer

PHP with sockets [closed]

How do I use PHP with socket? It can be any type ... I need to create notifications and chat. I have tried to use it in many ways, but I never can. :     
asked by 26.10.2017 / 19:05
1
answer

Sending files via sockets - Python

I am studying sockets, using Python, and tried to make a script to send (Server) and receive (Client) files through sockets. However the script does not work as expected, the final file (received by the Client) always lacks a few bytes and some...
asked by 12.07.2017 / 21:59
1
answer

Socket error

I have a system that uses web socket in php for real-time chat and notification communication. It works, but it usually does peaks and the server from time to time drops the service. I'm going to post my code here and I beg you to help me und...
asked by 13.07.2017 / 21:15
1
answer

I can not display the value received from the server

I'm working on a project written in Java with a Client-Server structure. My client is made up of Graphical Interfaces with Swing and the server working with multi-threads. But I'm at a point where I can not go through with it. There is an act...
asked by 08.06.2017 / 16:17