gstreamer/gst/tcp
Wim Taymans 1989b502da gst/tcp/gstmultifdsink.c: Turn warnings into info.
Original commit message from CVS:
* gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
(gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
(is_sync_frame), (gst_multifdsink_new_client),
(gst_multifdsink_handle_client_write),
(gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
(gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
Turn warnings into info.
Don't allow a state change in the streaming thread.
2004-10-14 11:28:21 +00:00
..
.gitignore ignore 2004-07-09 13:23:35 +00:00
gstfdset.c gst/tcp/: Small cleanups in fdset.c 2004-09-17 10:06:52 +00:00
gstfdset.h gst/tcp/: Some extra checks in gstfdset. 2004-08-18 16:13:19 +00:00
gstmultifdsink.c gst/tcp/gstmultifdsink.c: Turn warnings into info. 2004-10-14 11:28:21 +00:00
gstmultifdsink.h gst/tcp/gstmultifdsink.*: Make syncing to keyframes actually work for new clients and lagging clients. 2004-09-27 15:09:35 +00:00
gsttcp-marshal.list gst/tcp/: Starting to prepare for specifying buffer time in other units than buffers. Expose remove reason in signal. 2004-08-10 15:23:19 +00:00
gsttcp.c improve debugging 2004-08-11 11:42:49 +00:00
gsttcp.h add new tcp elements 2004-05-20 10:15:31 +00:00
gsttcpclientsink.c gst/tcp/: Fix some memory leaks. 2004-08-30 10:28:40 +00:00
gsttcpclientsink.h ext/tcp/*: Revert Zaheer changes, to make things actually work again. 2004-06-17 09:10:57 +00:00
gsttcpclientsrc.c gst/tcp/: Fix some memory leaks. 2004-08-30 10:28:40 +00:00
gsttcpclientsrc.h read caps in connect 2004-06-17 18:20:43 +00:00
gsttcpplugin.c improve debugging 2004-08-11 11:42:49 +00:00
gsttcpplugin.h *.h: Revert indenting 2004-03-15 16:32:55 +00:00
gsttcpserversink.c gst/tcp/: Small cleanups in fdset.c 2004-09-17 10:06:52 +00:00
gsttcpserversink.h gst/tcp/: Abstracted away the select call, implemented poll (yes we ran into the 1024 limit in production). 2004-08-11 15:58:48 +00:00
gsttcpserversrc.c ext/tcp/*: Revert Zaheer changes, to make things actually work again. 2004-06-17 09:10:57 +00:00
gsttcpserversrc.h ext/tcp/*: Revert Zaheer changes, to make things actually work again. 2004-06-17 09:10:57 +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 gst/tcp/: Abstracted away the select call, implemented poll (yes we ran into the 1024 limit in production). 2004-08-11 15:58:48 +00:00
README add new tcp elements 2004-05-20 10:15:31 +00:00
tcp.vcproj more working plugins 2004-07-27 21:41:30 +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>