Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions libs/seiscomp/io/recordstream/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ SET(RECORDSTREAM_SOURCES
memory.cpp
sdsarchive.cpp
slconnection.cpp
sl4connection.cpp
combined.cpp
concurrent.cpp
balanced.cpp
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Implementations
SeedLink
--------

This RecordStream fetches data from a SeedLink server.
This RecordStream fetches data from a SeedLink 3.x server.


Definition
Expand All @@ -69,6 +69,43 @@ Examples
- ``slink://localhost:18000``


.. _rs-slink4:


SeedLink4
---------

This RecordStream fetches data from a SeedLink 4.x server.


Definition
^^^^^^^^^^

URL: ``slink4[s]://[host][:port][?parameter]``

The default host is set to `localhost`, the default port depends on the URL
scheme used:

- `slink4`: `18000`
- `slink4s`: `18500` (TLS)

Optional URL encoded parameters are:

- `timeout` - connection timeout in seconds, default: 300
- `retries` - number of connection retry attempts, default: -1
- `format` - miniSEED format to request (2,3), default: any
- `fetch` - close connection at end of data, default: false

Authentication is currently not supported.


Examples
^^^^^^^^

- ``slink4://``
- ``slink4://localhost:18000``


.. _rs-fdsnws:

FDSNWS
Expand Down
Loading