News SF.net Project Frequently Asked Questions Documentation Downloads Mailing Lists How to Contribute

SourceForge.net Logo

Changing the way games are made and played.

TNL::PacketStream class Reference

TNL::PacketStream Class Reference

#include <tnlBitStream.h>

Inheritance diagram for TNL::PacketStream:

TNL::BitStream TNL::ByteBuffer TNL::Object

Detailed Description

PacketStream provides a network interface to the BitStream for easy construction of data packets.


Public Member Functions

 PacketStream (U32 targetPacketSize=MaxPacketDataSize)
 Constructor assigns the internal buffer to the BitStream.

NetError sendto (Socket &outgoingSocket, const Address &theAddress)
 Sends this packet to the specified address through the specified socket.

NetError recvfrom (Socket &incomingSocket, Address *recvAddress)
 Reads a packet into the stream from the specified socket.


Private Types

typedef BitStream Parent

Private Attributes

U8 buffer [MaxPacketDataSize]
 internal buffer for packet data, sized to the maximum UDP packet size.


Member Typedef Documentation

typedef BitStream TNL::PacketStream::Parent [private]
 


Constructor & Destructor Documentation

TNL::PacketStream::PacketStream U32  targetPacketSize = MaxPacketDataSize  )  [inline]
 

Constructor assigns the internal buffer to the BitStream.


Member Function Documentation

NetError TNL::PacketStream::sendto Socket outgoingSocket,
const Address theAddress
 

Sends this packet to the specified address through the specified socket.

NetError TNL::PacketStream::recvfrom Socket incomingSocket,
Address recvAddress
 

Reads a packet into the stream from the specified socket.


Field Documentation

U8 TNL::PacketStream::buffer[MaxPacketDataSize] [private]
 

internal buffer for packet data, sized to the maximum UDP packet size.