-
Notifications
You must be signed in to change notification settings - Fork 19
/
coap.nuspec
80 lines (79 loc) · 4.77 KB
/
coap.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Com.AugustCellars.CoAP</id>
<version>1.1.10</version>
<title>Com.AugustCellars.CoAP</title>
<authors>Jim Schaad</authors>
<owners>jimsch</owners>
<licenseUrl>https://github.com/Com-AugustCellars/CoAP-CSharp/LICENSE</licenseUrl>
<projectUrl>https://github.com/Com-AugustCellars/CoAP-CSharp</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Com.AugustCellars.CoAP is an implementation in C# providing CoAP-based services to .NET applications.</description>
<summary>.NET implementation of the Constrained Application Protocol (CoAP)</summary>
<releaseNotes>
This project is built on the CoAP.NET project of smeshlink which in turn is based on Californium. As this project did not seem to be maintained any more and I wanted a version in order to test the newer items that are coming out of the IETF CORE working group, I have captured it and started exanding it.
This project is NOT to be used for commercial purposes. It is intented only for research and verification work.
1.1.19
- Update to match the OSCORE -14 specification
- Add more work to get callbacks from TLS processing to be known to the user
1.1.9
- Change to 4.6.2 NET FrameWork
- Allow for a server to specify an IP Address to monitor rather than monitoring all addresses associated with the machine.
- Setup to allow TCP transports to be used. The protocol itself is in a separate module. No support exists for WebSockets nor is it planned.
- Setup for TCP signal messages to be sent.
- Correct seriziation to allow for resolving againist a URL
- Move to latest version of OSCORE
- Fix blockwise to use the current session to work w/ TCP and BERT
- Start implementing the TLSEvent code. This code allows for some events in the TLS protocol to be sent to the client or server. Currently server can get unrecognized PSK notifications and process along with some setup events.
- Update to a more current version of the COSE draft. Probably not at -12 yet as I have not been following this recently.
- Move the link format code for CBOR and JSON to the most recent version. May change without warning in the future.
- Implement the code needed for doing Raw Public Keys. Unfortunately the public distribution of BouncyCastle does not have this implemented yet. Currently there are no plans to distribute our own BC drop.
1.1.8.1
- Put the strong name back
1.1.8
- Rewrite the LinkFormat code - introduce a strict parsing mode and setup for doing a resource directory.
1.1.7
- Missed the public on FileLogManager class
- Add method and dispatch code for dealing with FETCH, PATCH and iPATCH. These methods were defined in RFC 8132.
1.1.6
- Re-enable DTLS reliability layer. It was removed for debugging purposes.
- Re-enable observer reconnect attempts. The ability to disable it remains, this just changes the default value.
- Add a UriPath and UriQuery property to the CoapClient class. This means that URIs do not need to be constantly reparsed when looking at multiple resources on a server.
1.1.5
- DTLS should now check sessions correct
- Remove some left over Console.Write statements
1.1.4
- Refer to strongly named assemblies. These will become strongly named in the next version
- Updates dealing with the internal logging system so it can be made to log to a file rather than the console
- DTLS server implemention is now functional and included.
1.1.3
- Turn off logging by default
- Turn off auto re-enrollment for Observe relationships by default. The ObserveReconnect property on a request can be used to turn it back on for that request.
1.1.2
- Implement a basic version of DTLS client code
1.1.1
- Correct dll name
1.1.0
- Fix internal inconsistances
1.0.0
- Add support for OSCOAP draft -02
- Change name space to not collide with smershlink version
</releaseNotes>
<tags>CoAP RFC7252 OSCOAP</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" targetFramework="" />
</frameworkAssemblies>
<dependencies>
<dependency id="BouncyCastle" version="1.8.2"/>
<dependency id="Com.AugustCellars.COSE" version="1.2.0"/>
<dependency id="PeterO.CBOR" version="3.0.3"/>
</dependencies>
</metadata>
<files>
<file src="CoAP.NET\bin\Deploy\NET45\CoAP.dll" target="lib\net462\CoAP.dll" />
<file src="CoAP.NET\bin\Deploy\NET45\CoAP.pdb" target="lib\net462\CoAP.pdb" />
<file src="CoAP.NET\bin\Deploy\NET45\CoAP.XML" target="lib\net462\CoAP.XML" />
<file src="LICENSE" target="LICENSE" />
</files>
</package>