rename address to destination and add via in MeshAddDestinationMessage
This commit is contained in:
parent
d1ba39df1c
commit
70eb10ac29
1 changed files with 2 additions and 1 deletions
|
@ -104,7 +104,8 @@ class MeshLayerAnnounceMessage(discriminator_value(msg_type=MeshMessageType.MESH
|
|||
|
||||
class MeshAddDestinationMessage(discriminator_value(msg_type=MeshMessageType.MESH_ADD_DESTINATION), BaseModel):
|
||||
""" downstream node announces served destination """
|
||||
address: Annotated[MacAddress, CDoc("address of the added destination",)]
|
||||
destination: Annotated[MacAddress, CDoc("address of the added destination",)]
|
||||
via: Annotated[MacAddress, CDoc("address of the added destination's upstream",)]
|
||||
|
||||
|
||||
class MeshRemoveDestinationsMessage(discriminator_value(msg_type=MeshMessageType.MESH_REMOVE_DESTINATIONS), BaseModel):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue