Simple TCP/IP Server using the UIPEthernet library for ENC28J60 Ethernet boards.

Dependencies:   UIPEthernet

Revision:
5:8a0f9cab7f1f
Parent:
4:f7aed299f625
--- a/main.cpp	Tue Sep 03 09:47:09 2019 +0000
+++ b/main.cpp	Sat Sep 07 18:01:14 2019 +0000
@@ -47,8 +47,8 @@
     /* Bind the HTTP port (TCP 80) to the server */
     server.bind(PORT);
 
-    /* Can handle 5 simultaneous connections */
-    server.listen(5);
+    /* Can handle 4 simultaneous connections */
+    server.listen(4);
 
     while (true) {
         client = server.accept();