STUN actor: try to avoid ip address flapping #21

Merged
lx merged 4 commits from stun-keep-values into main 2024-01-16 15:05:01 +00:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 5a4bd88903 - Show all commits

View file

@ -1,4 +1,4 @@
FROM rust:1.57-bullseye as builder FROM rust:1.69-bullseye as builder
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y libssl-dev pkg-config apt-get install -y libssl-dev pkg-config

View file

@ -1,4 +1,5 @@
use std::collections::HashSet; use std::collections::HashSet;
use std::sync::Arc;
use anyhow::{Context, Result}; use anyhow::{Context, Result};
use iptables; use iptables;