aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/tls/DatagramTransport.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/tls/DatagramTransport.java')
-rw-r--r--libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/tls/DatagramTransport.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/tls/DatagramTransport.java b/libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/tls/DatagramTransport.java
deleted file mode 100644
index 761029b04..000000000
--- a/libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/tls/DatagramTransport.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package org.spongycastle.crypto.tls;
-
-import java.io.IOException;
-
-public interface DatagramTransport
-{
-
- int getReceiveLimit()
- throws IOException;
-
- int getSendLimit()
- throws IOException;
-
- int receive(byte[] buf, int off, int len, int waitMillis)
- throws IOException;
-
- void send(byte[] buf, int off, int len)
- throws IOException;
-
- void close()
- throws IOException;
-}