diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2007-12-06 18:43:30 -0500 |
---|---|---|
committer | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2008-03-04 01:18:24 -0500 |
commit | 95e41e93e18d8e1e272ce23d96bae4f17ce11d42 (patch) | |
tree | c3b138bc03f3cb04396b3326b4fed13689b0366d /net/ipv6/icmp.c | |
parent | 5e5f3f0f801321078c897a5de0b4b4304f234da0 (diff) |
[IPV6]: Make ndisc_flow_init() common for later use.
For later use, this patch is renaming ndisc_flow_init() to
icmpv6_flow_init() and putting it in common place.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Diffstat (limited to 'net/ipv6/icmp.c')
-rw-r--r-- | net/ipv6/icmp.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c index 12c0b85d6c46..cff74127ea32 100644 --- a/net/ipv6/icmp.c +++ b/net/ipv6/icmp.c | |||
@@ -777,6 +777,22 @@ drop_no_count: | |||
777 | return 0; | 777 | return 0; |
778 | } | 778 | } |
779 | 779 | ||
780 | void icmpv6_flow_init(struct sock *sk, struct flowi *fl, | ||
781 | u8 type, | ||
782 | const struct in6_addr *saddr, | ||
783 | const struct in6_addr *daddr, | ||
784 | int oif) | ||
785 | { | ||
786 | memset(fl, 0, sizeof(*fl)); | ||
787 | ipv6_addr_copy(&fl->fl6_src, saddr); | ||
788 | ipv6_addr_copy(&fl->fl6_dst, daddr); | ||
789 | fl->proto = IPPROTO_ICMPV6; | ||
790 | fl->fl_icmp_type = type; | ||
791 | fl->fl_icmp_code = 0; | ||
792 | fl->oif = oif; | ||
793 | security_sk_classify_flow(sk, fl); | ||
794 | } | ||
795 | |||
780 | /* | 796 | /* |
781 | * Special lock-class for __icmpv6_sk: | 797 | * Special lock-class for __icmpv6_sk: |
782 | */ | 798 | */ |