daemon: removed bitmap, which is not used
This commit is contained in:
parent
c8a589ef76
commit
dde339cc46
4 changed files with 5 additions and 9 deletions
|
@ -1093,7 +1093,6 @@ class ConfigEvent:
|
||||||
data_types=list(proto.data_types),
|
data_types=list(proto.data_types),
|
||||||
data_values=proto.data_values,
|
data_values=proto.data_values,
|
||||||
captions=proto.captions,
|
captions=proto.captions,
|
||||||
bitmap=proto.bitmap,
|
|
||||||
possible_values=proto.possible_values,
|
possible_values=proto.possible_values,
|
||||||
groups=proto.groups,
|
groups=proto.groups,
|
||||||
iface_id=proto.iface_id,
|
iface_id=proto.iface_id,
|
||||||
|
|
|
@ -113,7 +113,6 @@ class ConfigurableOptions:
|
||||||
"""
|
"""
|
||||||
|
|
||||||
name: Optional[str] = None
|
name: Optional[str] = None
|
||||||
bitmap: Optional[str] = None
|
|
||||||
options: List[Configuration] = []
|
options: List[Configuration] = []
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
|
|
@ -225,7 +225,6 @@ class WirelessModel(ConfigurableOptions):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
config_type: RegisterTlvs = RegisterTlvs.WIRELESS
|
config_type: RegisterTlvs = RegisterTlvs.WIRELESS
|
||||||
bitmap: str = None
|
|
||||||
position_callback: Callable[[CoreInterface], None] = None
|
position_callback: Callable[[CoreInterface], None] = None
|
||||||
|
|
||||||
def __init__(self, session: "Session", _id: int) -> None:
|
def __init__(self, session: "Session", _id: int) -> None:
|
||||||
|
|
|
@ -280,12 +280,11 @@ message ConfigEvent {
|
||||||
repeated int32 data_types = 5;
|
repeated int32 data_types = 5;
|
||||||
string data_values = 6;
|
string data_values = 6;
|
||||||
string captions = 7;
|
string captions = 7;
|
||||||
string bitmap = 8;
|
string possible_values = 8;
|
||||||
string possible_values = 9;
|
string groups = 9;
|
||||||
string groups = 10;
|
int32 iface_id = 10;
|
||||||
int32 iface_id = 11;
|
int32 network_id = 11;
|
||||||
int32 network_id = 12;
|
string opaque = 12;
|
||||||
string opaque = 13;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
message ExceptionEvent {
|
message ExceptionEvent {
|
||||||
|
|
Loading…
Reference in a new issue