Author: toad
Date: 2008-01-29 12:02:44 +0000 (Tue, 29 Jan 2008)
New Revision: 17380
Modified:
trunk/freenet/src/freenet/io/xfer/PartiallyReceivedBulk.java
Log:
Make abort reason and description available to prb's callers.
Modified: trunk/freenet/src/freenet/io/xfer/PartiallyReceivedBulk.java
===================================================================
--- trunk/freenet/src/freenet/io/xfer/PartiallyReceivedBulk.java
2008-01-29 11:58:13 UTC (rev 17379)
+++ trunk/freenet/src/freenet/io/xfer/PartiallyReceivedBulk.java
2008-01-29 12:02:44 UTC (rev 17380)
@@ -183,4 +183,12 @@
}
transmitters = newTrans;
}
+
+ public int getAbortReason() {
+ return _abortReason;
+ }
+
+ public String getAbortDescription() {
+ return _abortDescription;
+ }
}