Kylin/Nng/Protocol.h
2024-10-29 13:51:37 +00:00

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__