renamed some variables
This commit is contained in:
parent
d3f1f71da7
commit
3648993e36
@ -60,22 +60,22 @@ pub async fn process(ctx: &Arc<Mutex<Context>>) {
|
||||
let begin: DateTime<Local> = Local::now().trunc_subsecs(0);
|
||||
|
||||
// wait for logs parse and zmq channel receive
|
||||
let mut recvip = ipdatarx.recv().await.unwrap();
|
||||
let mut received_ip = ipdatarx.recv().await.unwrap();
|
||||
|
||||
// lock the context mutex
|
||||
let ctxarc = Arc::clone(&ctx);
|
||||
let mut ctx = ctxarc.lock().await;
|
||||
|
||||
if recvip.ip == "".to_string() && recvip.mode == "init".to_string() {
|
||||
for sndip in &mut ctx.get_blocklist_toblock().await {
|
||||
sndip.mode = "init".to_string();
|
||||
send_to_ipbl_zmq(&reqsocket, sndip).await;
|
||||
if received_ip.ip == "".to_string() && received_ip.mode == "init".to_string() {
|
||||
for ip_to_send in &mut ctx.get_blocklist_toblock().await {
|
||||
ip_to_send.mode = "init".to_string();
|
||||
send_to_ipbl_zmq(&reqsocket, ip_to_send).await;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
// refresh context blocklist
|
||||
let filtered_ip = ctx.update_blocklist(&mut recvip).await;
|
||||
let filtered_ip = ctx.update_blocklist(&mut received_ip).await;
|
||||
ctx.gc_blocklist().await;
|
||||
|
||||
// send ip list to ws and zmq sockets
|
||||
|
Loading…
Reference in New Issue
Block a user