1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-29 18:52:13 +01:00

Fixing Ethernet client connect code to properly chance source port each time.

This commit is contained in:
David A. Mellis 2009-02-14 10:27:36 +00:00
parent 7737684ad6
commit 62505d8136

View File

@ -33,8 +33,7 @@ uint8_t Client::connect() {
_srcport++;
// XXX: what port should we connect from?
socket(_sock, Sn_MR_TCP, _port, 1024 + _srcport);
socket(_sock, Sn_MR_TCP, 1024 + _srcport, 0);
if (!::connect(_sock, _ip, _port))
return 0;