-
Notifications
You must be signed in to change notification settings - Fork 407
New issue
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
Since LWM2M v1.1.x, Client Endpoint Name is optional for Register and Bootstrap request #1457
Comments
All I found about this in the specification : LWM2M-v1.1.1@core§6.1.7.1. Bootstrap-Request Operation says :
LWM2M-v1.1.1@core§7.3. Identifiers says :
LWM2M-v1.1.1@transport§5.2.6. Endpoint Client Name says :
LWM2M-v1.1.1@transport§5.5.5. Endpoint Client Name says :
My understanding is : When endpoint Name is absent from
What I could imagine user asked : Automatically find endpoint name from How we can implement it in Leshan ?: A solution could be to have a public interface EndpointNameProvider {
String getEndpointName(LwM2mIdentity identity);
} |
This is now implemented (see #1652) and integrated in |
See :
This is not yet supported in Leshan.
Note that a client using LWM2M v1.0 MUST send the client endpoint name, as this is mandatory in LWM2M v1.0.x specification.
The text was updated successfully, but these errors were encountered: