gstreamer/gst/tcp
Thomas Vander Stichele 6a35436fdc uniformized; added signals to serversink for new and removed clients
Original commit message from CVS:
uniformized; added signals to serversink for new and removed clients
2004-06-08 09:12:12 +00:00
..
.gitignore add new tcp elements 2004-05-20 10:15:31 +00:00
gsttcp-marshal.list uniformized; added signals to serversink for new and removed clients 2004-06-08 09:12:12 +00:00
gsttcp.c gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD) 2004-06-05 15:40:10 +00:00
gsttcp.h add new tcp elements 2004-05-20 10:15:31 +00:00
gsttcpclientsink.c uniformized; added signals to serversink for new and removed clients 2004-06-08 09:12:12 +00:00
gsttcpclientsink.h add new tcp elements 2004-05-20 10:15:31 +00:00
gsttcpclientsrc.c uniformized; added signals to serversink for new and removed clients 2004-06-08 09:12:12 +00:00
gsttcpclientsrc.h gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD) 2004-06-05 15:40:10 +00:00
gsttcpplugin.c add new tcp elements 2004-05-20 10:15:31 +00:00
gsttcpplugin.h *.h: Revert indenting 2004-03-15 16:32:55 +00:00
gsttcpserversink.c uniformized; added signals to serversink for new and removed clients 2004-06-08 09:12:12 +00:00
gsttcpserversink.h uniformized; added signals to serversink for new and removed clients 2004-06-08 09:12:12 +00:00
gsttcpserversrc.c uniformized; added signals to serversink for new and removed clients 2004-06-08 09:12:12 +00:00
gsttcpserversrc.h add new tcp elements 2004-05-20 10:15:31 +00:00
gsttcpsink.c ext/mad/gstid3tag.c: Add stdlib.h 2004-04-20 23:03:28 +00:00
gsttcpsink.h gsttcp -> gsttcpplugin 2004-05-19 15:07:44 +00:00
gsttcpsrc.c first batch : remove ',' at end of enums as they could confuse older gcc, foreign compilers (forte) and gtk-doc 2004-05-21 22:39:30 +00:00
gsttcpsrc.h gsttcp -> gsttcpplugin 2004-05-19 15:07:44 +00:00
Makefile.am uniformized; added signals to serversink for new and removed clients 2004-06-08 09:12:12 +00:00
README add new tcp elements 2004-05-20 10:15:31 +00:00

This part of the documentation is for the new tcp elements:
- tcpclientsrc
- tcpclientsink
- tcpserversrc
- tcpserversink
                                                                                
which are created to replace the old tcpsrc/tcpsink
                                                                                
TESTS
-----
Use these tests to test functionality of the various tcp plugins

* server: nc -l -p 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
  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
  client: gst-launch fdsrc fd=1 ! tcpclientsink protocol=none port=3000
  everything you type in the client is shown on the server

* server: gst-launch tcpserversrc protocol=none port=3000 ! fdsink fd=2
  client: gst-launch fdsrc fd=1 ! tcpclientsink protocol=none port=3000


TODO
----
- implement DNS resolution

--------

This is the old documentation for the original tcpsrc/tcpsink elements.

* What is TCP src/sink?

solution, like icecast or realaudio or whatever.
But the future RTP plugins shall not do the actual transmission/reception
of packets on the network themselve but the Application developer would be
encouraged to use either the TCP or the UDP plugins for that. UDP would be
used mostly but there could be situations where TCP would be the only
available choice. For example streaming accross firewalls that do not
allow UDP.

* Shortcomings

Even given our modest ambitions, the current code doesn't handle
caps negotiation robustly.

* Todo

The caps nego should do bi-directional negotiation.

Perhaps this plugin can be the example of how to do caps negotiation
via a point-to-point protocol.

12 Sep 2001
Wim Taymans <wim.taymans@chello.be>
Joshua N Pritikin <vishnu@pobox.com>
Zeeshan Ali <zak147@yahoo.com>