Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

7 роки тому
6 роки тому
7 роки тому
7 роки тому
6 роки тому
7 роки тому
6 роки тому
5 роки тому
7 роки тому
7 роки тому
7 роки тому
7 роки тому
7 роки тому
7 роки тому
7 роки тому
6 роки тому
5 роки тому
7 роки тому
7 роки тому
7 роки тому
6 роки тому
7 роки тому
7 роки тому
7 роки тому
7 роки тому
7 роки тому
7 роки тому
7 роки тому
7 роки тому
7 роки тому
7 роки тому
6 роки тому
5 роки тому
7 роки тому
7 роки тому
7 роки тому
7 роки тому
7 роки тому
6 роки тому
7 роки тому
7 роки тому
7 роки тому
7 роки тому
7 роки тому
7 роки тому
7 роки тому
6 роки тому
5 роки тому
7 роки тому
7 роки тому
7 роки тому
6 роки тому
7 роки тому
6 роки тому
7 роки тому
7 роки тому
5 роки тому
7 роки тому
5 роки тому
7 роки тому
7 роки тому
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <p align="center">
  2. <img src="https://github.com/chkr1011/MQTTnet/blob/master/Images/Logo_128x128.png?raw=true" width="128">
  3. <br/>
  4. <br/>
  5. </p>
  6. [![NuGet Badge](https://buildstats.info/nuget/MQTTnet)](https://www.nuget.org/packages/MQTTnet)
  7. [![Build status](https://ci.appveyor.com/api/projects/status/ycit86voxfevm2aa/branch/master?svg=true)](https://ci.appveyor.com/project/chkr1011/mqttnet)
  8. [![BCH compliance](https://bettercodehub.com/edge/badge/chkr1011/MQTTnet?branch=master)](https://bettercodehub.com/)
  9. [![OpenCollective](https://opencollective.com/mqttnet/backers/badge.svg)](https://opencollective.com/mqttnet)
  10. [![OpenCollective](https://opencollective.com/mqttnet/sponsors/badge.svg)](https://opencollective.com/mqttnet) [![Join the chat at https://gitter.im/MQTTnet/community](https://badges.gitter.im/MQTTnet/community.svg)](https://gitter.im/MQTTnet/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
  11. # MQTTnet
  12. MQTTnet is a high performance .NET library for MQTT based communication. It provides a MQTT client and a MQTT server (broker). The implementation is based on the documentation from <http://mqtt.org/>.
  13. ## Features
  14. ### General
  15. * Async support
  16. * TLS 1.2 support for client and server (but not UWP servers)
  17. * Extensible communication channels (e.g. In-Memory, TCP, TCP+TLS, WS)
  18. * Lightweight (only the low level implementation of MQTT, no overhead)
  19. * Performance optimized (processing ~70.000 messages / second)*
  20. * Uniform API across all supported versions of the MQTT protocol
  21. * Interfaces included for mocking and testing
  22. * Access to internal trace messages
  23. * Unit tested (~210 tests)
  24. * No external dependencies
  25. \* Tested on local machine (Intel i7 8700K) with MQTTnet client and server running in the same process using the TCP channel. The app for verification is part of this repository and stored in _/Tests/MQTTnet.TestApp.NetCore_.
  26. ### Client
  27. * Communication via TCP (+TLS) or WS (WebSocket) supported
  28. * Included core _MqttClient_ with low level functionality
  29. * Also included _ManagedMqttClient_ which maintains the connection and subscriptions automatically. Also application messages are queued and re-scheduled for higher QoS levels automatically.
  30. * Rx support (via another project)
  31. * Compatible with Microsoft Azure IoT Hub
  32. ### Server (broker)
  33. * List of connected clients available
  34. * Supports connected clients with different protocol versions at the same time
  35. * Able to publish its own messages (no loopback client required)
  36. * Able to receive every message (no loopback client required)
  37. * Extensible client credential validation
  38. * Retained messages are supported including persisting via interface methods (own implementation required)
  39. * WebSockets supported (via ASP.NET Core 2.0, separate nuget)
  40. * A custom message interceptor can be added which allows transforming or extending every received application message
  41. * Validate subscriptions and deny subscribing of certain topics depending on requesting clients
  42. * Connect clients with different protocol versions at the same time.
  43. ## MQTTnet Server
  44. _MQTTnet Server_ is a standalone cross platform MQTT server (like mosquitto) basing on this library. It has the following features.
  45. * Running portable (no installation required)
  46. * Runs und Windows, Linux, macOS, Raspberry Pi
  47. * Python scripting support for manipulating messages, validation of clients, building business logic etc.
  48. * Supports WebSocket and TCP (with and without TLS) connections
  49. * Provides a HTTP based API (including Swagger endpoint)
  50. * Extensive configuration parameters and customization supported
  51. ## Supported frameworks
  52. * .NET Standard 1.3+
  53. * .NET Core 1.1+
  54. * .NET Core App 1.1+
  55. * .NET Framework 4.5.2+ (x86, x64, AnyCPU)
  56. * Mono 5.2+
  57. * Universal Windows Platform (UWP) 10.0.10240+ (x86, x64, ARM, AnyCPU, Windows 10 IoT Core)
  58. * Xamarin.Android 7.5+
  59. * Xamarin.iOS 10.14+
  60. ## Supported MQTT versions
  61. * 5.0.0
  62. * 3.1.1
  63. * 3.1.0
  64. ## Nuget
  65. This library is available as a nuget package: <https://www.nuget.org/packages/MQTTnet/>
  66. ## Examples
  67. Please find examples and the documentation at the Wiki of this repository (<https://github.com/chkr1011/MQTTnet/wiki>).
  68. ## Contributions
  69. 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.
  70. Also additions and updates in the Wiki are welcome.
  71. **This project, like all projects requires time and money. If you feel compelled to support the development team, you can do so through Open Collective (https://opencollective.com/mqttnet)**.
  72. ## References
  73. This library is used in the following projects:
  74. * Azure Functions MQTT Bindings, [CaseOnline.Azure.WebJobs.Extensions.Mqtt](https://github.com/keesschollaart81/CaseOnline.Azure.WebJobs.Extensions.Mqtt/)
  75. * HA4IoT (Open Source Home Automation system for .NET, <https://github.com/chkr1011/HA4IoT>)
  76. * MQTT Client Rx (Wrapper for Reactive Extensions, <https://github.com/1iveowl/MQTTClient.rx>)
  77. * MQTT Tester (MQTT client test app for [Android](https://play.google.com/store/apps/details?id=com.liveowl.mqtttester) and [iOS](https://itunes.apple.com/us/app/mqtt-tester/id1278621826?mt=8))
  78. * Wirehome.Core (Open Source Home Automation system for .NET Core, <https://github.com/chkr1011/Wirehome.Core>)
  79. If you use this library and want to see your project here please create a pull request.
  80. ## License
  81. MIT License
  82. MQTTnet Copyright (c) 2016-2019 Christian Kratky
  83. Permission is hereby granted, free of charge, to any person obtaining a copy
  84. of this software and associated documentation files (the "Software"), to deal
  85. in the Software without restriction, including without limitation the rights
  86. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  87. copies of the Software, and to permit persons to whom the Software is
  88. furnished to do so, subject to the following conditions:
  89. The above copyright notice and this permission notice shall be included in all
  90. copies or substantial portions of the Software.
  91. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  92. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  93. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  94. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  95. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  96. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  97. SOFTWARE.