Changeset 177f595
- Timestamp:
- Dec 4, 2018 8:34:51 PM (2 years ago)
- Branches:
- master
- Children:
- 2876da2
- Parents:
- 7c5162e
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/routerconsole/java/src/edu/internet2/ndt/OsfwWorker.java
r7c5162e r177f595 8 8 * OsfwWorker creates a thread that listens for a message from the server. It 9 9 * functions to check if the server has sent a message that is valid and 10 * sufficient to determine if the server- >client direction has a fire-wall.10 * sufficient to determine if the server->client direction has a fire-wall. 11 11 * 12 12 * <p> … … 50 50 * Test time duration to wait for message from server 51 51 * @param _localParam 52 * Applet object used to set the result of the S- >C firewall test52 * Applet object used to set the result of the S->C firewall test 53 53 */ 54 54 OsfwWorker(ServerSocket srvSocketParam, int iParamTestTime, … … 77 77 * run() method of this SFW Worker thread. This thread listens on the socket 78 78 * from the server for a given time period, and checks to see if the server 79 * has sent a message that is valid and sufficient to determine if the S- >C79 * has sent a message that is valid and sufficient to determine if the S->C 80 80 * direction has a fire-wall. 81 81 * */ -
apps/routerconsole/java/src/edu/internet2/ndt/Tcpbw100.java
r7c5162e r177f595 564 564 565 565 /** 566 * Get Client- >Server fire-wall test results.566 * Get Client->Server fire-wall test results. 567 567 * 568 * @return integer indicating C- >S test results568 * @return integer indicating C->S test results 569 569 * */ 570 570 public int getC2sSFWTestResults() { … … 573 573 574 574 /** 575 * Set Client- >Server fire-wall test results.575 * Set Client->Server fire-wall test results. 576 576 * 577 577 * @param iParamC2SRes 578 * integer indicating C- >S test results578 * integer indicating C->S test results 579 579 * */ 580 580 public void setC2sSFWTestResults(int iParamC2SRes) { … … 583 583 584 584 /** 585 * Get Server- >Client fire-wall test results.585 * Get Server->Client fire-wall test results. 586 586 * 587 * @return integer indicating C- >S test results587 * @return integer indicating C->S test results 588 588 * */ 589 589 public int getS2cSFWTestResults() { … … 592 592 593 593 /** 594 * Set server- >Client fire-wall test results.594 * Set server->Client fire-wall test results. 595 595 * 596 596 * @param iParamS2CRes 597 * integer indicating C- >S test results597 * integer indicating C->S test results 598 598 * */ 599 599 public void setS2cSFWTestResults(int iParamS2CRes) { … … 4549 4549 t.interrupt(); 4550 4550 } catch (RuntimeException re) { 4551 _log. warn("TG", re);4551 _log.debug("TG", re); 4552 4552 } 4553 4553 try { … … 4560 4560 t.stop(); 4561 4561 } catch (RuntimeException re) { 4562 _log. warn("TG", re);4562 _log.debug("TG", re); 4563 4563 } 4564 4564 } … … 4572 4572 break; 4573 4573 }catch( Throwable e ){ 4574 _log. warn("TG", e);4574 _log.debug("TG", e); 4575 4575 } 4576 4576 } -
apps/streaming/java/src/net/i2p/client/streaming/impl/I2PServerSocketFull.java
r7c5162e r177f595 31 31 * @throws I2PException if there is a problem with reading a new socket 32 32 * from the data available (e.g. the I2PSession is closed) 33 * @throws RouterRestartException (extends I2PException) if the router is apparently restarting, since 0.9.3433 * @throws net.i2p.client.streaming.RouterRestartException (extends I2PException) if the router is apparently restarting, since 0.9.34 34 34 * @throws ConnectException if the I2PServerSocket is closed, or if interrupted. 35 35 * Not actually thrown through 0.9.16; thrown as of 0.9.17 -
apps/streaming/java/src/net/i2p/client/streaming/impl/I2PSocketManagerFull.java
r7c5162e r177f595 351 351 * @return connected I2PSocket, or null through 0.9.16, non-null as of 0.9.17 352 352 * @throws I2PException if session is closed 353 * @throws RouterRestartException (extends I2PException) if the router is apparently restarting, since 0.9.34353 * @throws net.i2p.client.streaming.RouterRestartException (extends I2PException) if the router is apparently restarting, since 0.9.34 354 354 * @throws ConnectException (since 0.9.17; I2PServerSocket interface always declared it) 355 355 * @throws SocketTimeoutException if a timeout was previously set with setSoTimeout and the timeout has been reached. -
core/java/src/org/json/simple/ItemList.java
r7c5162e r177f595 10 10 11 11 /** 12 * |a:b:c| = >|a|,|b|,|c|13 * |:| = >||,||14 * |a:| = >|a|,||15 * @author FangYidong <fangyidong@yahoo.com.cn>12 * |a:b:c| => |a|,|b|,|c| 13 * |:| => ||,|| 14 * |a:| => |a|,|| 15 * @author FangYidong fangyidong@yahoo.com.cn 16 16 */ 17 17 public class ItemList { -
core/java/src/org/json/simple/JSONArray.java
r7c5162e r177f595 15 15 * A JSON array. JSONObject supports java.util.List interface. 16 16 * 17 * @author FangYidong <fangyidong@yahoo.com.cn>17 * @author FangYidong fangyidong@yahoo.com.cn 18 18 */ 19 19 public class JSONArray extends ArrayList implements List, JSONAware, JSONStreamAware { -
core/java/src/org/json/simple/JSONAware.java
r7c5162e r177f595 3 3 /** 4 4 * Beans that support customized output of JSON text shall implement this interface. 5 * @author FangYidong <fangyidong@yahoo.com.cn>5 * @author FangYidong fangyidong@yahoo.com.cn 6 6 */ 7 7 public interface JSONAware { -
core/java/src/org/json/simple/JSONObject.java
r7c5162e r177f595 14 14 * A JSON object. Key value pairs are unordered. JSONObject supports java.util.Map interface. 15 15 * 16 * @author FangYidong <fangyidong@yahoo.com.cn>16 * @author FangYidong fangyidong@yahoo.com.cn 17 17 */ 18 18 public class JSONObject extends HashMap implements Map, JSONAware, JSONStreamAware{ -
core/java/src/org/json/simple/JSONStreamAware.java
r7c5162e r177f595 6 6 /** 7 7 * Beans that support customized output of JSON text to a writer shall implement this interface. 8 * @author FangYidong <fangyidong@yahoo.com.cn>8 * @author FangYidong fangyidong@yahoo.com.cn 9 9 */ 10 10 public interface JSONStreamAware { -
core/java/src/org/json/simple/JSONValue.java
r7c5162e r177f595 17 17 18 18 /** 19 * @author FangYidong <fangyidong@yahoo.com.cn>19 * @author FangYidong fangyidong@yahoo.com.cn 20 20 */ 21 21 public class JSONValue { -
core/java/src/org/json/simple/parser/ContainerFactory.java
r7c5162e r177f595 9 9 * @see org.json.simple.parser.JSONParser#parse(java.io.Reader, ContainerFactory) 10 10 * 11 * @author FangYidong <fangyidong@yahoo.com.cn>11 * @author FangYidong fangyidong@yahoo.com.cn 12 12 */ 13 13 public interface ContainerFactory { -
core/java/src/org/json/simple/parser/ContentHandler.java
r7c5162e r177f595 9 9 * @see org.json.simple.parser.JSONParser#parse(java.io.Reader, ContentHandler, boolean) 10 10 * 11 * @author FangYidong <fangyidong@yahoo.com.cn>11 * @author FangYidong fangyidong@yahoo.com.cn 12 12 */ 13 13 public interface ContentHandler { -
core/java/src/org/json/simple/parser/JSONParser.java
r7c5162e r177f595 19 19 * Parser for JSON text. Please note that JSONParser is NOT thread-safe. 20 20 * 21 * @author FangYidong <fangyidong@yahoo.com.cn>21 * @author FangYidong fangyidong@yahoo.com.cn 22 22 */ 23 23 public class JSONParser { … … 57 57 * 58 58 * @param in - The new character reader. 59 * @throws IOException60 * @throws ParseException61 59 */ 62 60 public void reset(Reader in){ -
core/java/src/org/json/simple/parser/ParseException.java
r7c5162e r177f595 4 4 * ParseException explains why and where the error occurs in source JSON text. 5 5 * 6 * @author FangYidong <fangyidong@yahoo.com.cn>6 * @author FangYidong fangyidong@yahoo.com.cn 7 7 * 8 8 */ -
core/java/src/org/json/simple/parser/Yytoken.java
r7c5162e r177f595 6 6 7 7 /** 8 * @author FangYidong <fangyidong@yahoo.com.cn>8 * @author FangYidong fangyidong@yahoo.com.cn 9 9 */ 10 10 public class Yytoken {
Note: See TracChangeset
for help on using the changeset viewer.