~ubuntu-branches/ubuntu/trusty/conntrack/trusty-proposed

« back to all changes in this revision

Viewing changes to src/cache_wt.c

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Wirt, Max Kellermann
  • Date: 2008-04-14 23:09:22 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080414230922-9xoi1gl38tc8lyng
Tags: 1:0.9.6-4
[ Max Kellermann ]
fix compilation on SPARC (printf argument mismatch)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * (C) 2007 by Pablo Neira Ayuso <pablo@netfilter.org>
 
3
 * 
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
17
 */
 
18
 
 
19
#include "cache.h"
 
20
#include "netlink.h"
 
21
#include "us-conntrack.h"
 
22
 
 
23
#include <string.h>
 
24
 
 
25
static void add_update(struct us_conntrack *u)
 
26
{
 
27
        char __ct[nfct_maxsize()];
 
28
        struct nf_conntrack *ct = (struct nf_conntrack *)(void*) __ct;
 
29
 
 
30
        memcpy(ct, u->ct, nfct_maxsize());
 
31
 
 
32
        nl_create_conntrack(ct);
 
33
}
 
34
 
 
35
static void writethrough_add(struct us_conntrack *u, void *data)
 
36
{
 
37
        add_update(u);
 
38
}
 
39
 
 
40
static void writethrough_update(struct us_conntrack *u, void *data)
 
41
{
 
42
        add_update(u);
 
43
}
 
44
 
 
45
static void writethrough_destroy(struct us_conntrack *u, void *data)
 
46
{
 
47
        nl_destroy_conntrack(u->ct);
 
48
}
 
49
 
 
50
struct cache_feature writethrough_feature = {
 
51
        .add            = writethrough_add,
 
52
        .update         = writethrough_update,
 
53
        .destroy        = writethrough_destroy,
 
54
};