Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aytchell/sise
A simple to use SSDP client library
https://github.com/aytchell/sise
elixir elixir-lang ssdp
Last synced: 3 months ago
JSON representation
A simple to use SSDP client library
- Host: GitHub
- URL: https://github.com/aytchell/sise
- Owner: aytchell
- License: apache-2.0
- Created: 2021-04-01T09:09:20.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-27T07:23:36.000Z (over 3 years ago)
- Last Synced: 2024-08-08T15:18:45.187Z (6 months ago)
- Topics: elixir, elixir-lang, ssdp
- Language: Elixir
- Homepage: https://hex.pm/packages/sise
- Size: 90.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.md
- License: LICENSE.txt
Awesome Lists containing this project
- fucking-awesome-elixir - sise - A simple to use SSDP client. (Networking)
- awesome-elixir - sise - A simple to use SSDP client. (Networking)
README
# Sise
Sise is a library that implements the **si**mple **se**rvice
discovery protocol (SSDP).Sise implements the Application behaviour and thus automatically starts
operation. In its current state the library is
- listening for announcements (and updates)
- issuing M-Search requests from time to time (interval can be configured)There is a function available, so you can fetch discovered devices or services
for all, or a specific notification type.Additionally, processes can subscribe (for all, or a specific notification
type), so they will get notification messages for new, updated or gone
devices and services.## Documentation
The library's API is documented with ExDoc. See https://hexdocs.pm/sise/
for the latest generated version.## Usage with mix
```
defp deps do
[
{:sise, "~> 0.9.2"}
]
end
```## Contribution
If you have any suggestions for improvements (I'm quite new to Elixir)
then please drop a note or open a PR.## License
Copyright 2021, Hannes Lerchl
Licensed under the Apache License, Version 2.0
A copy of this License is contained in [this repository](LICENSE.txt) or
alternatively can be obtained fromhttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.