Vegastrike 0.5.1 rc1  1.0
Original sources for Vegastrike Evolved
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
vsnet_socketflags.h File Reference
#include <config.h>
#include <iostream>

Go to the source code of this file.

Enumerations

enum  PCKTFLAGS {
  NONE =0, STDPRI =0, LOPRI =0x0010, HIPRI =0x0020,
  SENDRELIABLE =0, SENDANDFORGET =0x0100, SENT =0x0001, RESENT =0x0002,
  ACKED =0x0004, COMPRESSED =0x1000, FRAGMENT =0x2000, LASTFRAGMENT =0x4000
}
 

Functions

std::ostream & operator<< (std::ostream &ostr, PCKTFLAGS flags)
 

Enumeration Type Documentation

enum PCKTFLAGS
Enumerator
NONE 
STDPRI 
LOPRI 
HIPRI 
SENDRELIABLE 
SENDANDFORGET 
SENT 
RESENT 
ACKED 
COMPRESSED 
FRAGMENT 
LASTFRAGMENT 

Definition at line 23 of file vsnet_socketflags.h.

24 {
25  NONE =0,
26  STDPRI =0, //normal priority
27  LOPRI =0x0010, //lower than normal
28  HIPRI =0x0020, //higher than normal
29  SENDRELIABLE =0, //retransmit if lost
30  SENDANDFORGET=0x0100, //do not retransmit if lost
31  SENT =0x0001,
32  RESENT =0x0002,
33  ACKED =0x0004,
34  COMPRESSED =0x1000,
35  FRAGMENT =0x2000, //low pri packet that is split up
36  LASTFRAGMENT =0x4000, //low pri packet that is split up
37 };

Function Documentation

std::ostream& operator<< ( std::ostream &  ostr,
PCKTFLAGS  flags 
)