Kylin/Nng/Protocol.h

20 lines
246 B
C
Raw Normal View History

2024-10-29 21:51:37 +08:00
#ifndef __PROTOCOLS_H__
#define __PROTOCOLS_H__
namespace Nng {
enum Protocol {
None,
Bus,
Pair,
Publisher,
Subscriber,
Push,
Pull,
Request,
Reply,
Respondent,
Surveyor,
};
}
#endif // __PROTOCOLS_H__