apparently it's an error to specify nc -l -p 3000 - though the short usage does not...
authorThomas Vander Stichele <thomas@apestaart.org>
Fri, 20 Jun 2008 16:12:50 +0000 (16:12 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Fri, 20 Jun 2008 16:12:50 +0000 (16:12 +0000)
Original commit message from CVS:
apparently it's an error to specify nc -l -p 3000 - though the short usage
does not make it very clear that you can drop the host arg with -l

gst/tcp/README

index 0e3af6a..05ef85e 100644 (file)
@@ -8,16 +8,16 @@ TESTS
 -----
 Use these tests to test functionality of the various tcp plugins
 
-* server: nc -l -p 3000
+* server: nc -l 3000
   client: nc localhost 3000
   everything you type in the server is shown on the client
   everything you type in the client is shown on the server
 
-* server: nc -l -p 3000
+* server: nc -l 3000
   client: gst-launch tcpclientsrc protocol=none port=3000 ! fdsink fd=2
   everything you type in the server is shown on the client
 
-* server: nc -l -p 3000
+* server: nc -l 3000
   client: gst-launch fdsrc fd=1 ! tcpclientsink protocol=none port=3000
   everything you type in the client is shown on the server