All of lore.kernel.org
 help / color / mirror / Atom feed
From: pablo neira <pablo@eurodev.net>
To: vamsi krishna <b_vamsi2002@yahoo.co.in>,
	netfilter-devel@lists.netfilter.org
Subject: Re: problem in compiling the hooks
Date: Wed, 14 Jan 2004 12:30:59 +0100	[thread overview]
Message-ID: <40052873.5090106@eurodev.net> (raw)
In-Reply-To: <20040112081940.86820.qmail@web8207.mail.in.yahoo.com>

http://www.faqs.org/docs/kernel/x204.html

vamsi krishna wrote:

>hai,
>  
>I am a new bie. when i am trying to compile the
>following netfilter hook program i am getting errors .
>
>#define __KERNEL__
>#define MODULE
>
>#include<linux/module.h>
>#include<linux/kernel.h>
>#include<linux/netfilter.h>
>#include<linux/netfilter_ipv4.h>
>static struct nf_hook_ops nfho;
> 
>int hook_func(unsigned int hooknum,
>                      struct sk_buff **skb,
>                      const struct net_device *in,
>                      const struct net_device *out,
>                      int (*okfn)(struct sk_buff *))
>{
>return NF_DROP;
>}
>
>int init_module()
>{
>nfho.hook=hook_func;
>nfho.hooknum=NF_IP_PRI_ROUTING;
>nfho.pf=PF_INET;
>nfho.priority=NF_IP_PRI_FIRST;
>
>nf_register_hook(&nfho);
>
>return 0;
>}
>void cleanup_module()
>{
>nf_unregister_hook(&nfho);
>}
>
>i got the following errors
>
>[root@localhost vamsi]# gcc -c p1.c
>In file included from p1.c:7:
>/usr/include/linux/netfilter_ipv4.h:53: `INT_MIN'
>undeclared here (not in a function)
>/usr/include/linux/netfilter_ipv4.h:53: enumerator
>value for `NF_IP_PRI_FIRST' not integer constant
>/usr/include/linux/netfilter_ipv4.h:59: `INT_MAX'
>undeclared here (not in a function)
>/usr/include/linux/netfilter_ipv4.h:59: enumerator
>value for `NF_IP_PRI_LAST' not integer constant
>p1.c:15: warning: `struct net_device' declared inside
>parameter list
>p1.c:15: warning: its scope is only this definition or
>declaration, which is probably not what you want
>p1.c:15: warning: `struct sk_buff' declared inside
>parameter list
>p1.c: In function `init_module':
>p1.c:22: invalid use of undefined type `struct
>nf_hook_ops'
>p1.c:23: invalid use of undefined type `struct
>nf_hook_ops'
>p1.c:24: invalid use of undefined type `struct
>nf_hook_ops'
>p1.c:24: `PF_INET' undeclared (first use in this
>function)
>p1.c:24: (Each undeclared identifier is reported only
>once
>p1.c:24: for each function it appears in.)
>p1.c:25: invalid use of undefined type `struct
>nf_hook_ops'
>p1.c: At top level:
>p1.c:9: storage size of `nfho' isn't known
>
>please help me,
>
>vamsi
>
>
>
>________________________________________________________________________
>Yahoo! India Mobile: Download the latest polyphonic ringtones.
>Go to http://in.mobile.yahoo.com
>
>  
>

      reply	other threads:[~2004-01-14 11:30 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-01-12  8:19 problem in compiling the hooks vamsi krishna
2004-01-14 11:30 ` pablo neira [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=40052873.5090106@eurodev.net \
    --to=pablo@eurodev.net \
    --cc=b_vamsi2002@yahoo.co.in \
    --cc=netfilter-devel@lists.netfilter.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.