20 lines
246 B
C
20 lines
246 B
C
|
#ifndef __PROTOCOLS_H__
|
||
|
#define __PROTOCOLS_H__
|
||
|
|
||
|
namespace Nng {
|
||
|
enum Protocol {
|
||
|
None,
|
||
|
Bus,
|
||
|
Pair,
|
||
|
Publisher,
|
||
|
Subscriber,
|
||
|
Push,
|
||
|
Pull,
|
||
|
Request,
|
||
|
Reply,
|
||
|
Respondent,
|
||
|
Surveyor,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // __PROTOCOLS_H__
|