Skip to content

Commit

Permalink
- do not remvoe the binding cache entry of the home registration
Browse files Browse the repository at this point in the history
	  when received an icmp destination unreach.
  • Loading branch information
keiichi committed Dec 13, 2001
1 parent 5b18839 commit 8e9a772
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kame/sys/netinet6/mip6_icmp6.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $KAME: mip6_icmp6.c,v 1.27 2001/12/13 15:58:21 keiichi Exp $ */
/* $KAME: mip6_icmp6.c,v 1.28 2001/12/13 23:27:56 keiichi Exp $ */

/*
* Copyright (C) 2001 WIDE Project. All rights reserved.
Expand Down Expand Up @@ -142,7 +142,7 @@ mip6_icmp6_input(m, off, icmp6len)
*/
mip6_icmp6_find_addr((caddr_t)icmp6, icmp6len, &laddr, &paddr);
mbc = mip6_bc_list_find_withphaddr(&mip6_bc_list, paddr);
if (mbc) {
if (mbc && (mbc->mbc_flags & IP6_BUF_HOME) != 0) {
mip6log((LOG_INFO,
"%s:%d: "
"a mobile node (%s) moved.\n",
Expand Down

0 comments on commit 8e9a772

Please sign in to comment.