-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c493a62
commit fc2a1e7
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
...e/src/main/java/org/eclipse/californium/core/network/stack/CapabilitiesSettingsLayer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package org.eclipse.californium.core.network.stack; | ||
|
||
import org.eclipse.californium.elements.EndpointContext; | ||
|
||
public class CapabilitiesSettingsLayer extends AbstractConnectionOrientedLayer { | ||
|
||
@Override | ||
public void connected(EndpointContext context) { | ||
|
||
// TODO send CSM Message ? | ||
// But we need an exchange :S | ||
|
||
// sendEmptyMessage(null, null); ? | ||
// sendRequest(null, null); ? | ||
|
||
super.connected(context); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters