aboutsummaryrefslogtreecommitdiff
path: root/src/IvyClient.java
diff options
context:
space:
mode:
authorjestin2006-08-01 15:52:16 +0000
committerjestin2006-08-01 15:52:16 +0000
commit21cec28549587db7e34d0ac455244fe4d73a0ed4 (patch)
tree336320cb1ad63fe7633fb57d91959dd53cec69b3 /src/IvyClient.java
parentd0afba319f95f0059d201c6b7cbfbc3322f2c0f6 (diff)
downloadivy-java-21cec28549587db7e34d0ac455244fe4d73a0ed4.zip
ivy-java-21cec28549587db7e34d0ac455244fe4d73a0ed4.tar.gz
ivy-java-21cec28549587db7e34d0ac455244fe4d73a0ed4.tar.bz2
ivy-java-21cec28549587db7e34d0ac455244fe4d73a0ed4.tar.xz
Changes to allow the creation of a tunnel between two (or more) ivy
bussssseeeeezzzz
Diffstat (limited to 'src/IvyClient.java')
-rwxr-xr-xsrc/IvyClient.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/IvyClient.java b/src/IvyClient.java
index af42342..b723433 100755
--- a/src/IvyClient.java
+++ b/src/IvyClient.java
@@ -363,7 +363,7 @@ public class IvyClient implements Runnable {
traceDebug("Thread stopped");
}
- private synchronized void sendBuffer( String buffer ) throws IvyException {
+ protected synchronized void sendBuffer( String buffer ) throws IvyException {
buffer += "\n";
try {
out.write(buffer.getBytes() );
@@ -428,7 +428,7 @@ public class IvyClient implements Runnable {
return s;
}
- private boolean newParseMsg(String s) throws IvyException {
+ protected boolean newParseMsg(String s) throws IvyException {
if (s==null) throw new IvyException("null string to parse in protocol");
byte[] b = s.getBytes();
int from=0,to=0,msgType;