PhoenixSocket  4.0.1
Library which integrates socket unix use in Phoenix
Loading...
Searching...
No Matches
PRecvFlag Namespace Reference

Enumerations

enum  PRecvFlag { BLOCK , NON_BLOCK }
 describe the receiving flag of the Socket More...
 

Enumeration Type Documentation

◆ PRecvFlag

describe the receiving flag of the Socket

Enumerator
BLOCK 
NON_BLOCK 

Definition at line 41 of file PSocketFlag.h.

41 {
42 BLOCK, //Normal usage of the Socket. Blocking until a message comes
43 NON_BLOCK //The Socket recv does not stop the execution of the program
44 };