Package net.i2p.i2ptunnel.udp
Class I2PSink
- java.lang.Object
-
- net.i2p.i2ptunnel.udp.I2PSink
-
-
Field Summary
Fields Modifier and Type Field Description protected Destination
dest
protected I2PDatagramMaker
maker
protected boolean
raw
protected I2PSession
sess
protected int
toPort
-
Constructor Summary
Constructors Constructor Description I2PSink(I2PSession sess, Destination dest)
repliable (not raw)I2PSink(I2PSession sess, Destination dest, boolean raw)
I2PSink(I2PSession sess, Destination dest, boolean raw, int toPort)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
send(Destination src, int fromPort, int ign_toPort, byte[] data)
-
-
-
Field Detail
-
raw
protected final boolean raw
-
sess
protected final I2PSession sess
-
dest
protected final Destination dest
-
maker
protected final I2PDatagramMaker maker
-
toPort
protected final int toPort
- Since:
- 0.9.53
-
-
Constructor Detail
-
I2PSink
public I2PSink(I2PSession sess, Destination dest)
repliable (not raw)
-
I2PSink
public I2PSink(I2PSession sess, Destination dest, boolean raw)
- Parameters:
raw
- false for repliable
-
I2PSink
public I2PSink(I2PSession sess, Destination dest, boolean raw, int toPort)
- Parameters:
raw
- false for repliabletoPort
- I2CP destination port, 0-65535- Since:
- 0.9.53
-
-
Method Detail
-
send
public void send(Destination src, int fromPort, int ign_toPort, byte[] data)
- Specified by:
send
in interfaceSink
- Parameters:
src
- ignoredfromPort
- I2CP portign_toPort
- ignored- Throws:
RuntimeException
- if session is closed- Since:
- 0.9.53 added fromPort and toPort parameters, breaking change, sorry
-
-