@@ -633,12 +633,12 @@ So while the default is : (id,host,port,callback), the following examples will s
-Basic Examples
+Basic Examples
You can find Advanced Examples in the examples folder. In the examples you will find more complex demos including multi client examples.
-Server for Unix Sockets & TCP Sockets
+Server for Unix Sockets & TCP Sockets
The server is the process keeping a socket for IPC open. Multiple sockets can connect to this server and talk to it. It can also broadcast to all clients or emit to a specific client. This is the most basic example which will work for both local Unix Sockets and local or remote network TCP Sockets.
@@ -666,7 +666,7 @@ ipc.server.start();
-Client for Unix Sockets & TCP Sockets
+Client for Unix Sockets & TCP Sockets
The client connects to the servers socket for Inter Process Communication. The socket will recieve events emitted to it specifically as well as events which are broadcast out on the socket by the server. This is the most basic example which will work for both local Unix Sockets and local or remote network TCP Sockets.
@@ -705,7 +705,7 @@ ipc.connectTo(
-Server & Client for UDP Sockets
+Server & Client for UDP Sockets
UDP Sockets are different than Unix & TCP Sockets because they must be bound to a unique port on their machine to recieve messages. For example, A TCP or Unix Socket client could just connect to a seperate TCP or Unix Socket sever. That client could then exchange, both send and recive, data on the servers port or location. UDP Sockets can not do this. They must bind to a port to recieve or send data.
@@ -714,7 +714,7 @@ ipc.connectTo(
This is the most basic example which will work for both local Unix Sockets and local or remote network TCP Sockets.
-UDP Server 1 - "World"
+UDP Server 1 - "World"
var ipc=require('../../../node-ipc');
@@ -750,7 +750,7 @@ ipc.server.start();
-UDP Server 2 - "Hello"
+UDP Server 2 - "Hello"
note we set the port here to 8001 because the world server is already using the default ipc.config.networkPort of 8000. So we can not bind to 8000 while world is using it.
@@ -793,7 +793,7 @@ ipc.server.start();
diff --git a/stylesheets/stylesheet.css b/stylesheets/stylesheet.css
index 7a08b01..619d19d 100644
--- a/stylesheets/stylesheet.css
+++ b/stylesheets/stylesheet.css
@@ -201,12 +201,14 @@ ul, ol, dl {
}
ul {
- list-style: inside;
+ list-style-position: inside;
+ list-style: disc;
padding-left: 20px;
}
ol {
- list-style: decimal inside;
+ list-style-position: inside;
+ list-style: decimal;
padding-left: 20px;
}