Send PKT_PROBE only when handshake has been done already.
This commit is contained in:
parent
0edef996a6
commit
0cf943753a
1 changed files with 1 additions and 1 deletions
|
@ -499,7 +499,7 @@ static void send_sptps_packet(node_t *n, vpn_packet_t *origpkt) {
|
|||
uint8_t type = 0;
|
||||
int offset = 0;
|
||||
|
||||
if(!(DATA(origpkt)[12] | DATA(origpkt)[13])) {
|
||||
if((!(DATA(origpkt)[12] | DATA(origpkt)[13])) && (n->sptps.outstate)) {
|
||||
sptps_send_record(&n->sptps, PKT_PROBE, (char *)DATA(origpkt), origpkt->len);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue