gstreamer/gst/tcp
Nicolas Dufresne 8e6c6266d7 Remove plugin specific static build option
Static and dynamic plugins now have the same interface. The standard
--enable-static/--enable-shared toggle are sufficient.
2017-05-16 13:42:07 -04:00
..
.gitignore
gstmultifdsink.c multifdsink: Remove GValueArray from the doc 2017-03-14 16:30:46 -04:00
gstmultifdsink.h
gstmultihandlesink.c multifdsink: Remove GValueArray from the doc 2017-03-14 16:30:46 -04:00
gstmultihandlesink.h docs: Convert gtkdoc comments to markdown 2017-03-10 18:19:17 -03:00
gstmultisocketsink.c docs: Convert gtkdoc comments to markdown 2017-03-10 18:19:17 -03:00
gstmultisocketsink.h multisocketsink: add GstNetworkMessage event 2015-12-10 12:44:42 +01:00
gstsocketsrc.c docs: Convert gtkdoc comments to markdown 2017-03-10 18:19:17 -03:00
gstsocketsrc.h socketsrc: handle GstNetworkMessage events 2015-12-10 12:44:42 +01:00
gsttcp.h tcp: Use the generic marshaller instead of generating custom ones 2013-04-25 09:20:29 +02:00
gsttcpclientsink.c docs: Convert gtkdoc comments to markdown 2017-03-10 18:19:17 -03:00
gsttcpclientsink.h
gsttcpclientsrc.c docs: Convert gtkdoc comments to markdown 2017-03-10 18:19:17 -03:00
gsttcpclientsrc.h tcpclientsrc: add timeout property 2016-12-21 10:05:49 +02:00
gsttcpplugin.c tcp: Add element socketsrc 2015-03-13 20:05:00 +01:00
gsttcpserversink.c docs: Convert gtkdoc comments to markdown 2017-03-10 18:19:17 -03:00
gsttcpserversink.h
gsttcpserversrc.c docs: Convert gtkdoc comments to markdown 2017-03-10 18:19:17 -03:00
gsttcpserversrc.h
Makefile.am Remove plugin specific static build option 2017-05-16 13:42:07 -04:00
meson.build Add support for Meson as alternative/parallel build system 2016-08-20 11:09:51 +01:00
README

This part of the documentation is for the new tcp elements:
- tcpclientsrc
- tcpclientsink
- tcpserversrc
- tcpserversink
                                                                                
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

* server: gst-launch fdsrc fd=1 ! tcpserversink protocol=none port=3000
  client: gst-launch tcpclientsrc protocol=none port=3000 ! fdsink fd=2
  -> Received first buffer without caps set

TODO
----
- implement DNS resolution

multifdsink
-----------
- operation:
  - client fd gets added when "add" signal gets emitted on multifdsink
  - signal handler creates a GstTCPClient structure, adds it to ->clients,
    and adds the fd to ->fd_hash, then emits client-added
  - client 

  - when a buffer comes in:
    - the _render vmethod puts the buffer on the global queue
    - and increases bytes_to_serve
    - (currently it sets streamheaders, but since this is treated globally
       this is wrong - clients can be at different positions in the stream)

  - when a client issues a write (ie requests data):
    - when using GDP, if no caps sent yet, send caps first, then set caps_sent
    - if streamheader buffers, and we haven't sent yet to this client,
      send current streamheader buffers, then set streamheader_sent
    - send out buffers