aboutsummaryrefslogtreecommitdiff
path: root/libraries/Ethernet/Client.h
diff options
context:
space:
mode:
authorDavid A. Mellis <d.mellis@arduino.cc>2009-01-07 21:16:45 +0000
committerDavid A. Mellis <d.mellis@arduino.cc>2009-01-07 21:16:45 +0000
commitc0550aac8c93e81828a8cc10ac2e4ee5e0f83e16 (patch)
tree9aef80f0b294720231c89321bc8d90c6c3c7767c /libraries/Ethernet/Client.h
parent1cee12bada4a155565b057b0ab036d6b3f3484b4 (diff)
Originating each outgoing network connection from a different source port (in the Client class of the Ethernet library).
Updating readme and todo.
Diffstat (limited to 'libraries/Ethernet/Client.h')
-rw-r--r--libraries/Ethernet/Client.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libraries/Ethernet/Client.h b/libraries/Ethernet/Client.h
index 5911b95..f269e9b 100644
--- a/libraries/Ethernet/Client.h
+++ b/libraries/Ethernet/Client.h
@@ -5,6 +5,7 @@
class Client : public Print {
private:
+ static uint16_t _srcport;
uint8_t _sock;
uint8_t *_ip;
uint16_t _port;