We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried this simple example with current main branch:
import { fail } from 'k6'; import { setTimeout } from "k6/x/timers" import { Client } from 'k6/x/coap'; export default function() { try { // Create new client and connect. let client = new Client( "localhost:5684", "Client_identity", "secretPSK", // path/to/client/crt.pem, // path/to/client/key.pem, ); // Verify connection. let res = client.get("/keep-alive", 10); console.log(String.fromCharCode(...res.body)); } catch (e) { fail(e); } }
And it resulted in an empty identity in my DTLS exchange:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I tried this simple example with current main branch:
And it resulted in an empty identity in my DTLS exchange:
The text was updated successfully, but these errors were encountered: