This commit is contained in:
Zxilly 2021-01-12 18:51:22 +08:00
parent 7221bfbbd8
commit 649f97f47f
2 changed files with 7 additions and 2 deletions

View File

@ -3,7 +3,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=UA2F
PKG_VERSION:=2.1
PKG_RELEASE:=9
PKG_RELEASE:=10
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)

View File

@ -427,9 +427,14 @@ int main(int argc, char *argv[]) {
start_t = time(NULL);
ipset_load_types();
// ipset_load_types();
Pipset = ipset_init();
if(!Pipset) {
syslog(LOG_ERR, "Pipset not inited.");
exit(EXIT_FAILURE);
}
nl = mnl_socket_open(NETLINK_NETFILTER);
if (nl == NULL) {