Error fixed in attack detect

This commit is contained in:
pavanvpatil 2022-10-30 09:29:23 +05:30 committed by GitHub
parent fe01d4486a
commit 8b22a3a67e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -34,6 +34,7 @@ gboolean attack_detect_freq(struct data_frame *df)
head->AVERAGE_OF_FREQUENCY = 50; head->AVERAGE_OF_FREQUENCY = 50;
head->COUNT = 500; head->COUNT = 500;
head->idcode = to_intconvertor(df->idcode); head->idcode = to_intconvertor(df->idcode);
head->next = NULL;
return TRUE; return TRUE;
} }
else else
@ -139,6 +140,7 @@ gboolean attack_detect_vol(struct data_frame *df)
headvol->AVERAGE_OF_VOLTAGE = CURR_vol; headvol->AVERAGE_OF_VOLTAGE = CURR_vol;
headvol->COUNT = 500; headvol->COUNT = 500;
headvol->idcode = to_intconvertor(df->idcode); headvol->idcode = to_intconvertor(df->idcode);
headvol->next = NULL;
return TRUE; return TRUE;
} }
else else
@ -193,4 +195,4 @@ gboolean attack_detect_freq_vol(struct data_frame *df)
return attack_detect_freq(df) && attack_detect_vol(df); return attack_detect_freq(df) && attack_detect_vol(df);
} }
/* pavan changes */ /* pavan changes */