Changeset caaf0cc
- Timestamp:
- Oct 8, 2008 2:28:35 PM (12 years ago)
- Branches:
- master
- Children:
- 5eef43d2
- Parents:
- 18d42ec
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/BOB/src/net/i2p/BOB/BOB.java
r18d42ec rcaaf0cc 139 139 140 140 try { 141 warn("BOB is now running."); 141 142 ServerSocket listener = new ServerSocket(Integer.parseInt(props.getProperty(PROP_BOB_PORT)), 10, InetAddress.getByName(props.getProperty(PROP_BOB_HOST))); 142 143 Socket server; -
apps/BOB/src/net/i2p/BOB/I2PtoTCP.java
r18d42ec rcaaf0cc 24 24 package net.i2p.BOB; 25 25 26 import java.io.IOException;27 26 import java.io.InputStream; 28 27 import java.io.OutputStream; 29 28 import java.net.Socket; 30 import java.net.UnknownHostException;31 29 import net.i2p.client.streaming.I2PSocket; 32 30 -
apps/BOB/src/net/i2p/BOB/TCPio.java
r18d42ec rcaaf0cc 81 81 * 82 82 * The total number of bytes read into the buffer, 83 * or -1 i sthere is no more data because the end of83 * or -1 if there is no more data because the end of 84 84 * the stream has been reached. 85 85 * -
apps/BOB/src/net/i2p/BOB/TCPtoI2P.java
r18d42ec rcaaf0cc 101 101 */ 102 102 private void Emsg(String e, OutputStream out) throws IOException { 103 System.out.println("ERROR TCPtoI2P: " + e);103 // Debugging System.out.println("ERROR TCPtoI2P: " + e); 104 104 out.write("ERROR".concat(e).getBytes()); 105 105 out.write(13); // cr 106 106 out.flush(); 107 sock.close();108 109 107 } 110 108 … … 153 151 } 154 152 } 155 } catch(I2PException e) { 153 154 } catch(I2PException e) { 156 155 Emsg("ERROR " + e.toString(), out); 157 156 } catch(ConnectException e) { -
installer/resources/clients.config
r18d42ec rcaaf0cc 26 26 clientApp.4.args=http://localhost:7657/ 27 27 clientApp.4.delay=5 28 29 # Start up BOB 30 clientApp.5.args= 31 clientApp.5.delay=10 32 clientApp.5.main=net.i2p.BOB.BOB 33 clientApp.5.name=BOB -
installer/resources/wrapper.config
r18d42ec rcaaf0cc 49 49 wrapper.java.classpath.18=lib/systray.jar 50 50 wrapper.java.classpath.19=lib/systray4j.jar 51 # BOB 52 wrapper.java.classpath.20=lib/BOB.jar 51 53 52 54 # Java Library Path (location of Wrapper.DLL or libwrapper.so)
Note: See TracChangeset
for help on using the changeset viewer.