Loading...

Reference.ServerConstructor History

Hide minor edits - Show changes to output

July 31, 2010, at 01:42 PM by Tom Igoe -
July 31, 2010, at 01:41 PM by Tom Igoe -
Changed lines 15-16 from:
port: the port to listen on (int)
to:
'''port''': the port to listen on (int)
July 31, 2010, at 01:36 PM by Tom Igoe -
July 31, 2010, at 01:35 PM by Tom Igoe -
Changed lines 27-28 from:
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
byte ip[] = { 10, 0, 0, 177 };
to:

// the media access control (ethernet hardware) address for the shield:
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
//the IP address for the shield:
byte ip[] = { 10, 0, 0, 177 };
// the router's gateway address:
Added line 34:
// the subnet:
July 31, 2010, at 01:33 PM by Tom Igoe -
Added line 46:
// if an incoming client connects, there will be bytes available to read:
Changed lines 48-50 from:
if (client) {
to:
if (client == true) {
// read bytes from the incoming client and write them back
// to any clients connected to the server:
September 02, 2008, at 04:35 PM by David A. Mellis -
Changed lines 1-4 from:
[[Ethernet]]

''Server'' class
to:
[[Ethernet]] : ''Server'' class
September 02, 2008, at 04:34 PM by David A. Mellis -
Added lines 1-2:
[[Ethernet]]
September 02, 2008, at 04:24 PM by David A. Mellis -
September 02, 2008, at 04:23 PM by David A. Mellis -
Deleted lines 0-1:

September 02, 2008, at 04:23 PM by David A. Mellis -
Changed lines 1-2 from:
\\
to:

September 02, 2008, at 04:22 PM by David A. Mellis -
Changed line 1 from:
to:
\\
September 02, 2008, at 04:22 PM by David A. Mellis -
Added line 1:
September 02, 2008, at 04:22 PM by David A. Mellis -
Added lines 1-52:
''Server'' class

!!Server()

!!!!Description

Create a server that listens for incoming connections on the specified port.

!!!!Syntax

Server(port);

!!!!Parameters

port: the port to listen on (int)

!!!!Returns

None

!!!!Example

[@
#include <Ethernet.h>

// network configuration. gateway and subnet are optional.
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
byte ip[] = { 10, 0, 0, 177 };
byte gateway[] = { 10, 0, 0, 1 };
byte subnet[] = { 255, 255, 0, 0 };

// telnet defaults to port 23
Server server = Server(23);

void setup()
{
// initialize the ethernet device
Ethernet.begin(mac, ip, gateway, subnet);

// start listening for clients
server.begin();
}

void loop()
{
Client client = server.available();
if (client) {
server.write(client.read());
}
}
@]



Bookmark and Share