mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-20 05:37:57 +00:00
Please explains should be sent in packets with a full sid
This commit is contained in:
parent
5798e5acb5
commit
ed8be33f82
@ -394,9 +394,14 @@ static int add_explain_response(struct subscriber *subscriber, void *context){
|
|||||||
}
|
}
|
||||||
|
|
||||||
// if one of our identities is unknown,
|
// if one of our identities is unknown,
|
||||||
// the header of our next payload must include our full sid.
|
// the header of this packet must include our full sid.
|
||||||
if (subscriber->reachable==REACHABLE_SELF)
|
if (subscriber->reachable==REACHABLE_SELF){
|
||||||
subscriber->send_full = 1;
|
subscriber->send_full=1;
|
||||||
|
if (subscriber==my_subscriber){
|
||||||
|
response->please_explain->source_full=1;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// add the whole subscriber id to the payload, stop if we run out of space
|
// add the whole subscriber id to the payload, stop if we run out of space
|
||||||
DEBUGF("Adding full sid by way of explanation %s", alloca_tohex_sid(subscriber->sid));
|
DEBUGF("Adding full sid by way of explanation %s", alloca_tohex_sid(subscriber->sid));
|
||||||
@ -512,8 +517,8 @@ int send_please_explain(struct decode_context *context, struct subscriber *sourc
|
|||||||
if (context->interface){
|
if (context->interface){
|
||||||
frame->destination_resolved=1;
|
frame->destination_resolved=1;
|
||||||
frame->next_hop = destination;
|
frame->next_hop = destination;
|
||||||
frame->recvaddr=context->addr;
|
frame->recvaddr = context->addr;
|
||||||
frame->interface=context->interface;
|
frame->interface = context->interface;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user