File tree 7 files changed +15
-9
lines changed
7 files changed +15
-9
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ static_library("dnssd") {
27
27
" ${ chip_root } /src/crypto" ,
28
28
" ${ chip_root } /src/lib/core" ,
29
29
" ${ chip_root } /src/lib/support" ,
30
- " ${ chip_root } /src/messaging:messaging_mrp_config " ,
30
+ " ${ chip_root } /src/messaging:configurations " ,
31
31
]
32
32
33
33
sources = [
Original file line number Diff line number Diff line change @@ -33,10 +33,16 @@ if (chip_config_resolve_peer_on_first_transmit_failure != "") {
33
33
defines += [ " CHIP_CONFIG_RESOLVE_PEER_ON_FIRST_TRANSMIT_FAILURE=${ chip_config_resolve_peer_on_first_transmit_failure } " ]
34
34
}
35
35
36
- source_set (" messaging_mrp_config" ) {
37
- sources = [ " ReliableMessageProtocolConfig.h" ]
36
+ source_set (" configurations" ) {
37
+ sources = [
38
+ " ReliableMessageProtocolConfig.h" ,
39
+ " SessionParameters.h" ,
40
+ ]
38
41
39
- public_deps = [ " ${ chip_root } /src/system" ]
42
+ public_deps = [
43
+ " ${ chip_root } /src/lib/core" ,
44
+ " ${ chip_root } /src/system" ,
45
+ ]
40
46
}
41
47
42
48
static_library (" messaging" ) {
@@ -67,7 +73,7 @@ static_library("messaging") {
67
73
cflags = [ " -Wconversion" ]
68
74
69
75
public_deps = [
70
- " :messaging_mrp_config " ,
76
+ " :configurations " ,
71
77
" ${ chip_root } /src/app/icd/server:icd-server-config" ,
72
78
" ${ chip_root } /src/crypto" ,
73
79
" ${ chip_root } /src/inet" ,
File renamed without changes.
Original file line number Diff line number Diff line change 37
37
#include < lib/support/SafeInt.h>
38
38
#include < lib/support/ScopedBuffer.h>
39
39
#include < lib/support/TypeTraits.h>
40
+ #include < messaging/SessionParameters.h>
40
41
#include < platform/PlatformManager.h>
41
42
#include < protocols/Protocols.h>
42
43
#include < protocols/secure_channel/CASEDestinationId.h>
43
44
#include < protocols/secure_channel/PairingSession.h>
44
- #include < protocols/secure_channel/SessionParameters.h>
45
45
#include < protocols/secure_channel/SessionResumptionStorage.h>
46
46
#include < protocols/secure_channel/StatusReport.h>
47
47
#include < system/SystemClock.h>
Original file line number Diff line number Diff line change 39
39
#include < lib/support/CodeUtils.h>
40
40
#include < lib/support/SafeInt.h>
41
41
#include < lib/support/TypeTraits.h>
42
+ #include < messaging/SessionParameters.h>
42
43
#include < protocols/Protocols.h>
43
44
#include < protocols/secure_channel/Constants.h>
44
- #include < protocols/secure_channel/SessionParameters.h>
45
45
#include < protocols/secure_channel/StatusReport.h>
46
46
#include < setup_payload/SetupPayload.h>
47
47
#include < system/TLVPacketBufferBackingStore.h>
Original file line number Diff line number Diff line change 28
28
#include < lib/core/CHIPError.h>
29
29
#include < lib/core/TLV.h>
30
30
#include < messaging/ExchangeContext.h>
31
+ #include < messaging/SessionParameters.h>
31
32
#include < protocols/secure_channel/Constants.h>
32
33
#include < protocols/secure_channel/SessionEstablishmentDelegate.h>
33
- #include < protocols/secure_channel/SessionParameters.h>
34
34
#include < protocols/secure_channel/StatusReport.h>
35
35
#include < transport/CryptoContext.h>
36
36
#include < transport/SecureSession.h>
Original file line number Diff line number Diff line change 25
25
#include < lib/support/IntrusiveList.h>
26
26
#include < lib/support/ReferenceCountedHandle.h>
27
27
#include < messaging/ReliableMessageProtocolConfig.h>
28
+ #include < messaging/SessionParameters.h>
28
29
#include < platform/LockTracker.h>
29
- #include < protocols/secure_channel/SessionParameters.h>
30
30
#include < transport/SessionDelegate.h>
31
31
32
32
namespace chip {
You can’t perform that action at this time.
0 commit comments