Thread overview
pregunta preguntona, acerca de el resultado de remoteAddress()
Jun 14, 2023
Danico
Jun 14, 2023
Ferhat Kurtulmuş
Jun 14, 2023
Danico
June 14, 2023

que significa los ultimos numeros de 192.168.0.13:50732 , cuando hago un remoteAddress() y en un servidor socket?

June 14, 2023
On 6/14/23 3:50 PM, Danico wrote:
> que significa los ultimos numeros de 192.168.0.13:50732 , cuando hago un remoteAddress() y en un servidor socket?

Those last numbers are the port on the remote machine.

It's how the system knows which socket to forward the connection to (any system can have thousands of currently open sockets).

https://en.wikipedia.org/wiki/Port_(computer_networking)

-Steve
June 14, 2023

On Wednesday, 14 June 2023 at 19:50:21 UTC, Danico wrote:

>

que significa los ultimos numeros de 192.168.0.13:50732 , cuando hago un remoteAddress() y en un servidor socket?

Es un numero de puerto. No estoy seguro que preguntar en un idioma otra que ingles es un buena idea aqui. Lee esto por favor: https://es.m.wikipedia.org/wiki/Puerta_de_enlace

June 14, 2023

On Wednesday, 14 June 2023 at 19:50:21 UTC, Danico wrote:

>

que significa los ultimos numeros de 192.168.0.13:50732 , cuando hago un remoteAddress() y en un servidor socket?

On Wednesday, 14 June 2023 at 19:50:21 UTC, Danico wrote:
Thanks everyone, it was an ephemeral ports, are automatically assigned by the client's operating system when establishing an outgoing connection.