|
Message
From: cvs at opencores.org<cvs@o...>
Date: Wed Jan 24 19:37:38 CET 2007
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/07/01 24:19:37 Modified: jop/java/target/src/common/ejip2 Arp.java Log: no message Revision Changes Path 1.3 jop/java/target/src/common/ejip2/Arp.java http://www.opencores.org/cvsweb.shtml/jop/java/target/src/common/ejip2/Arp.java.diff?r1=1.2&r2=1.3 (In the diff below, changes in quantity of whitespace are not shown.) Index: Arp.java =================================================================== RCS file: /cvsroot/martin/jop/java/target/src/common/ejip2/Arp.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- Arp.java 14 Jan 2007 22:17:43 -0000 1.2 +++ Arp.java 24 Jan 2007 18:37:38 -0000 1.3 @@ -279,8 +279,8 @@ p.buf[2] = (eth[0] << 24) + (eth[1] << 16) + (eth[2] << 8) + eth[3]; p.buf[3] = (eth[4] << 24) + (eth[5] << 16) - + (Net.linkLayer.getIpAddress() >>> 16); - p.buf[4] = (Net.linkLayer.getIpAddress() << 16); // we don't know the + + (p.interf.getIpAddress() >>> 16); + p.buf[4] = (p.interf.getIpAddress() << 16); // we don't know the // dest. eth. addr. p.buf[5] = 0; p.buf[6] = ip_dest; // destination IP address
|