You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
343 B
21 lines
343 B
namespace bluetooth.l2cap.classic;
|
|
|
|
attribute "privacy";
|
|
|
|
table ChannelData {
|
|
cid:int;
|
|
}
|
|
|
|
table LinkData {
|
|
address:string;
|
|
dynamic_channels:[ChannelData];
|
|
fixed_channels:[ChannelData];
|
|
}
|
|
|
|
table L2capClassicModuleData {
|
|
title:string (privacy:"Any");
|
|
active_links:[LinkData] (privacy:"Any");
|
|
}
|
|
|
|
root_type L2capClassicModuleData;
|