diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2008-06-20 16:12:50 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2008-06-20 16:12:50 +0000 |
commit | bcc3b3b5f58705f88872eb5233cbed683504e44a (patch) | |
tree | 74146aa530f29fa2a2e097bc8eb6cbe0bb9583f6 | |
parent | 5ff8a9437ed2f7d88a3955bcfc18906d09aee78c (diff) |
apparently it's an error to specify nc -l -p 3000 - though the short usage does not make it very clear that you can d...
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
-rw-r--r-- | gst/tcp/README | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/tcp/README b/gst/tcp/README index 0e3af6a6..05ef85e4 100644 --- a/gst/tcp/README +++ b/gst/tcp/README @@ -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 |