itsanjan / arduino

Automatically exported from code.google.com/p/arduino
Other
0 stars 0 forks source link

Rename Client, Server, etc. to EthernetClient, EthernetServer, etc. #615

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In order to make the API's compatible with other networking products (e.g. the 
wifly shield), we want to have common base classes for (TCP) Client and Server, 
and for UDP.  Rather than have the asymmetry of using unprefixed names (e.g. 
Client, Server, UDP) for the Ethernet shield and prefixed names for other 
libraries / products, let's use EthernetClient, EthernetServer, etc.  Then 
Client, Server, etc can be the common base classes.  Similarly, let's put 
IPAddress in the core to share it between libraries.

Original issue reported on code.google.com by dmel...@gmail.com on 31 Aug 2011 at 6:59

GoogleCodeExporter commented 9 years ago
Adrian actually fixed this already: 
https://github.com/arduino/Arduino/commit/da5ccf4eafea7b96fa22c3f110affbadd91ce8
f0

Original comment by dmel...@gmail.com on 31 Aug 2011 at 7:02