summaryrefslogtreecommitdiffstats
path: root/src/resync.c
blob: dbb2b6f16c6cb9ccde1b0480f8d683ac6e01d45f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * (C) 2006-2011 by Pablo Neira Ayuso <pablo@netfilter.org>
 * (C) 2011 by Vyatta Inc. <http://www.vyatta.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include "conntrackd.h"
#include "network.h"
#include "log.h"
#include "queue_tx.h"
#include "resync.h"
#include "cache.h"

void resync_req(void)
{
	dlog(LOG_NOTICE, "resync requested");
	tx_queue_add_ctlmsg(NET_F_RESYNC, 0, 0);
}

void resync_send(int (*do_cache_to_tx)(void *data1, void *data2))
{
	dlog(LOG_NOTICE, "sending bulk update");
	cache_iterate(STATE(mode)->internal->ct.data,
		      NULL, do_cache_to_tx);
	cache_iterate(STATE(mode)->internal->exp.data,
		      NULL, do_cache_to_tx);
}