File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -7345,6 +7345,12 @@ tfw_http_start(void)
7345
7345
return 0 ;
7346
7346
}
7347
7347
7348
+ static void
7349
+ tfw_http_stop (void )
7350
+ {
7351
+ ja5h_close_filter ();
7352
+ }
7353
+
7348
7354
/*
7349
7355
* ------------------------------------------------------------------------
7350
7356
* configuration handling
@@ -8000,6 +8006,7 @@ static TfwCfgSpec tfw_http_specs[] = {
8000
8006
TfwMod tfw_http_mod = {
8001
8007
.name = "http" ,
8002
8008
.start = tfw_http_start ,
8009
+ .stop = tfw_http_stop ,
8003
8010
.specs = tfw_http_specs ,
8004
8011
};
8005
8012
@@ -8024,5 +8031,4 @@ tfw_http_exit(void)
8024
8031
{
8025
8032
tfw_mod_unregister (& tfw_http_mod );
8026
8033
tfw_connection_hooks_unregister (TFW_FSM_HTTP );
8027
- http_close_filter ();
8028
8034
}
Original file line number Diff line number Diff line change 15
15
* and generic testing functions/macros are located in test.c/test.h
16
16
*
17
17
* Copyright (C) 2014 NatSys Lab. (info@natsys-lab.com).
18
- * Copyright (C) 2015-2024 Tempesta Technologies, Inc.
18
+ * Copyright (C) 2015-2025 Tempesta Technologies, Inc.
19
19
*
20
20
* This program is free software; you can redistribute it and/or modify it
21
21
* under the terms of the GNU General Public License as published by
@@ -489,6 +489,12 @@ ja5h_init_filter(size_t max_storage_size)
489
489
return true;
490
490
}
491
491
492
+ void
493
+ ja5h_close_filter (void )
494
+ {
495
+
496
+ }
497
+
492
498
int
493
499
http_ja5_cfgop_finish (TfwCfgSpec * cs )
494
500
{
You can’t perform that action at this time.
0 commit comments