aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/IPAddress.h
AgeCommit message (Collapse)Author
2014-02-10Added license for Client, IPAddressm and ServerCristian Maglie
See #1847
2014-01-15Make some operators in IPAddress constMatthijs Kooijman
These functions do not modify the IPAddress object, but were not marked as const. This meant that you could not do: void set_ip(const IPAddress& ip) { uint32_t copy = ip; } Since calling operator uint32_t() on ip would discard the constness of the reference.
2013-07-04Refactored YunClient and YunServer classes.Cristian Maglie
Added YunClient.connect() methods.
2011-08-28Merge branch 'master' into wifly_integrationamcewen
2011-03-28Pulled out Client API into a base class to allow multiple derived classes to ↵amcewen
use it, and moved it (plus IPAddress) out of the Ethernet library so that other libraries can find it. First steps in integrating the WiFly code so it's easier to switch between that and Ethernet