Send PKT_PROBE only when handshake has been done already.
This commit is contained in:
parent
d0e9430a8c
commit
037411aa29
1 changed files with 1 additions and 1 deletions
|
@ -503,7 +503,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