Application of mopd-2.5.3-fddi.patch:

* Sun Nov 17 2002 Maciej W. Rozycki <macro@ds2.pg.gda.pl> 2.5.3-14
- handle FDDI interfaces (fddi)

Downloaded from:
ftp://ftp.linux-mips.org/pub/linux/mips/people/macro/mopd/mopd-2.5.3-fddi.patch.gz
.patch SHA256 = d358a6906f84f33fe206b05425706893c2117b6755ecf270e8d61dddbb788b07
Patch history copied from:
ftp://ftp.linux-mips.org/pub/linux/mips/people/macro/mopd/mopd-2.5.3-15.spec
This commit is contained in:
Maciej W. Rozycki
2002-11-17 12:00:00 -05:00
committed by Boris Gjenero
parent a931882e8e
commit b03daccbbc
13 changed files with 270 additions and 99 deletions

View File

@@ -153,12 +153,14 @@ mopProcess(ii, pkt)
/* We don't known which transport, Guess! */
trans = mopGetTrans(pkt, 0);
trans = mopGetTrans(pkt, ii->trans);
/* Ok, return if we don't want this message */
if ((trans == TRANS_ETHER) && Not3Flag) return;
if ((trans == TRANS_8023) && Not4Flag) return;
if ((trans == TRANS_ETHER || trans == TRANS_FDDI_8021H) && Not3Flag)
return;
if ((trans == TRANS_8023 || trans == TRANS_FDDI_8022) && Not4Flag)
return;
mopPrintHeader(stdout, pkt, trans);
mopPrintMopHeader(stdout, pkt, trans);