Uses of Class
net.i2p.client.streaming.PacketLocal

Packages that use PacketLocal
net.i2p.client.streaming Implements a TCP-like (reliable, authenticated, in order) set of sockets for communicating over the IP-like (unreliable, unauthenticated, unordered) I2P messages. 
 

Uses of PacketLocal in net.i2p.client.streaming
 

Methods in net.i2p.client.streaming that return PacketLocal
 PacketLocal ConnectionDataReceiver.send(byte[] buf, int off, int size)
          Send some data through the connection, attaching any appropriate flags onto the packet.
 PacketLocal ConnectionDataReceiver.send(byte[] buf, int off, int size, boolean forceIncrement)
           
 

Methods in net.i2p.client.streaming that return types with arguments of type PacketLocal
(package private)  List<PacketLocal> Connection.ackPackets(long ackThrough, long[] nacks)
          Process the acks and nacks received in a packet
 

Methods in net.i2p.client.streaming with parameters of type PacketLocal
 boolean PacketQueue.enqueue(PacketLocal packet)
          Add a new packet to be sent out ASAP keys and tags disabled since dropped in I2PSession
(package private)  void Connection.sendPacket(PacketLocal packet)
           
 void MessageInputStream.updateAcks(PacketLocal packet)
          Adds the ack-through and nack fields to a packet we are building for transmission
 void PcapWriter.write(PacketLocal pkt)
          For outbound packets
 

Constructors in net.i2p.client.streaming with parameters of type PacketLocal
Connection.ResendPacketEvent(PacketLocal packet, long delay)