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 acc72e2c78
commit 8e8de29347
1 changed files with 1 additions and 2 deletions

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;