[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

(usagi-users 00999) Re: ISATAP implementation...



Yoshfuji,

The modifications you made look fine, and the ISATAP code seems to be
functioning properly. Two minor issues:

1. '/usr/src/usagi/usagi/iptunnel' does not build properly because the
   Makefile does not include the ISATAP-related changes found in:

     '/usr/src/usagi/kernel/linux24/include/linux/if_tunnel.h'

   Steps I took were:

  # cd /usr/src/usagi
  # make prepare
  # cd usagi/iptunnel
  # ./configure
  # make
  touch config.h
  gcc -I../libnet-tools -I../libinet6/include -g -O2 -D_USAGI -DINET6  -DI18N=1          -c -o
iptunnel.o iptunnel.c
  iptunnel.c: In function `parse_args':
  iptunnel.c:247: structure has no member named `sit_mode'
  iptunnel.c:247: `SITMODE_GENERIC' undeclared (first use in this function)
  iptunnel.c:247: (Each undeclared identifier is reported only once
  iptunnel.c:247: for each function it appears in.)
  iptunnel.c:254: structure has no member named `sit_mode'
  iptunnel.c:254: `SITMODE_ISATAP' undeclared (first use in this function)
  iptunnel.c:388: structure has no member named `sit_mode'
  iptunnel.c:393: structure has no member named `sit_v4any'
  make: *** [iptunnel.o] Error 1

2. The package '/usr/src/usagi/src/iproute2' does not seem to be referenced
   in the symlink tree under '/usr/src/usagi/usagi'. Is this not considered
   a core IPv6 tool? (If not, could it be added to the core IPv6 tools?)

Regards,

Fred Templin
templin@xxxxxxxxxxx



YOSHIFUJI Hideaki / 吉藤英明 wrote:
> 
> In article <3BD8AB57.D9D39C5E@xxxxxxxxxxx> (at Thu, 25 Oct 2001 17:16:23 -0700), "Fred L. Templin" <templin@xxxxxxxxxxx> says:
> 
> > Attached to this message, please find diff's relative to the current
> > USAGI CVS tree that implement the ISATAP functionality as extensions
> > to the existing IPv6-in-IPv4 tunnel driver found in:
> :
> > At this time, I would like to request that the diff's be folded into the
> > USAGI CVS repository. Can one of the core members please advise on how
> > to proceed?
> 
> Applied with some modification.  thanks a lot!
> 
> --yoshfuji