Uses of Class
net.i2p.router.transport.udp.UDPPacket

Packages that use UDPPacket
net.i2p.router.transport.udp   
 

Uses of UDPPacket in net.i2p.router.transport.udp
 

Methods in net.i2p.router.transport.udp that return UDPPacket
 UDPPacket UDPReceiver.receiveNext()
          Blocking call to retrieve the next inbound packet, or null if we have shut down.
static UDPPacket UDPPacket.acquire(I2PAppContext ctx)
           
 UDPPacket UDPEndpoint.receive()
          Blocking call to receive the next inbound UDP packet from any peer.
 UDPPacket PacketBuilder.buildPacket(OutboundMessageState state, int fragment, PeerState peer)
           
 UDPPacket PacketBuilder.buildACK(PeerState peer, java.util.List ackedMessageIds)
           
 UDPPacket PacketBuilder.buildSessionCreatedPacket(InboundEstablishState state, int externalPort, SessionKey ourIntroKey)
          Build a new SessionCreated packet for the given peer, encrypting it as necessary.
 UDPPacket PacketBuilder.buildSessionRequestPacket(OutboundEstablishState state)
          Build a new SessionRequest packet for the given peer, encrypting it as necessary.
 UDPPacket[] PacketBuilder.buildSessionConfirmedPackets(OutboundEstablishState state, RouterIdentity ourIdentity)
          Build a new series of SessionConfirmed packets for the given peer, encrypting it as necessary.
 UDPPacket PacketBuilder.buildSessionConfirmedPacket(OutboundEstablishState state, int fragmentNum, int numFragments, byte[] identity)
          Build a new SessionConfirmed packet for the given peer
 UDPPacket OutboundMessageFragments.getNextPacket()
          Grab the next packet that we want to send, blocking until one is ready.
 

Methods in net.i2p.router.transport.udp with parameters of type UDPPacket
(package private)  int UDPTransport.send(UDPPacket packet)
           
 int UDPSender.add(UDPPacket packet, boolean blocking)
          Add the packet to the queue.
 int UDPSender.add(UDPPacket packet)
           
 void UDPPacketReader.initialize(UDPPacket packet)
           
 int UDPEndpoint.send(UDPPacket packet)
          Add the packet to the outobund queue to be sent ASAP (as allowed by the bandwidth limiter)
static java.lang.String PeerState.calculateRemoteHostString(UDPPacket packet)