Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chkr1011/coapnet
CoAPnet is a high performance .NET library for CoAP based communication. It provides a CoAP client and a CoAP server. It also has DTLS support out of the box.
https://github.com/chkr1011/coapnet
arduino coap coap-client coap-protocol coap-server coaps home-automation internet-of-things iot smart smart-home tradfri tradfri-ikea-gateway
Last synced: 6 days ago
JSON representation
CoAPnet is a high performance .NET library for CoAP based communication. It provides a CoAP client and a CoAP server. It also has DTLS support out of the box.
- Host: GitHub
- URL: https://github.com/chkr1011/coapnet
- Owner: chkr1011
- License: mit
- Created: 2018-11-25T17:57:54.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-10-16T09:07:49.000Z (about 2 years ago)
- Last Synced: 2024-10-01T02:45:25.499Z (about 1 month ago)
- Topics: arduino, coap, coap-client, coap-protocol, coap-server, coaps, home-automation, internet-of-things, iot, smart, smart-home, tradfri, tradfri-ikea-gateway
- Language: C#
- Homepage:
- Size: 2.19 MB
- Stars: 70
- Watchers: 7
- Forks: 15
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![NuGet Badge](https://buildstats.info/nuget/CoAPnet)](https://www.nuget.org/packages/CoAPnet)
![Size](https://img.shields.io/github/repo-size/chkr1011/CoAPnet.svg)
[![Join the chat at https://gitter.im/CoAPnet/community](https://badges.gitter.im/CoAPnet/community.svg)](https://gitter.im/CoAPnet/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://raw.githubusercontent.com/chkr1011/CoAPnet/master/LICENSE)# CoAPnet
CoAPnet is a high performance .NET library for CoAPnet based communication. The library runs on macOS, Linux and Windows. It also supports UDP, DTLS, TCP and TLS connections.
## Features
### Protocol
* Core protocol (RFC 7252)
* Block transfer (RFC 7959)
* Observe (RFC 7641)### General
* Async support
* DTLS (up to 1.2) support
* TLS 1.2 support
* Extensible communication channels (e.g. In-Memory, TCP, TCP+TLS, UDP, UDP+TLS)
* Lightweight (only the low level implementation of CoAPnet, no overhead)
* Performance optimized
* Interfaces included for mocking and testing
* Access to internal trace messages
* Unit tested
* No external dependencies### Client
* Communication via TCP (+TLS) or UDP (+DTLS) supported
* Included core _LowLevelCoAPClient_ with low level functionality
* Block transfer is supported## Supported frameworks
* .NET Standard 1.3+
* .NET Core 1.1+
* .NET Core App 1.1+
* .NET Framework 4.5.2+ (x86, x64, AnyCPU)
* Mono 5.2+
* Universal Windows Platform (UWP) 10.0.10240+ (x86, x64, ARM, AnyCPU, Windows 10 IoT Core)
* Xamarin.Android 7.5+
* Xamarin.iOS 10.14+## Nuget
This library is available as a nuget package:
## Examples
Please find examples and the documentation at the Wiki of this repository ().
## Contributions
If you want to contribute to this project just create a pull request. But only pull requests which are matching the code style of this library will be accepted. Before creating a pull request please have a look at the library to get an overview of the required style.
Also additions and updates in the Wiki are welcome.## References
This library is used in the following projects:
* This library can be used to communicate with the IKEA Tradfri gateway.
* Wirehome.Core (Open Source Home Automation system for .NET Core, )If you use this library and want to see your project here please create a pull request.
## License
MIT License
CoAPnet Copyright (c) 2016-2022 Christian Kratky
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.