>>      header[1] =  (vpi << 4) | (vci >> 12);

This looks suspect to me. I don't know the code, and I certainly know
nothing in detail about ATM, but IIRC, vci is a small (<8 bits?)
positive integer, so >>12 is going to make it 0 always.

Perhaps you meant:
        header[1] =  (vpi << 4) | (vci << 12);

Pete

-- 
Peter Riocreux, Amulet Group, Dept. Computer Science, Manchester University,
Oxford Road, MANCHESTER, M13 9PL, UK.      <http://www.cs.man.ac.uk/amulet/> 
Voice: +44 161-2753547      Mobile: +44 7970-611366     Fax: +44 161-2756236


Liste de diffusion modem ALCATEL SpeedTouch USB
Pour se désinscrire : mailto:[EMAIL PROTECTED]?subject=unsubscribe

        

Reply via email to