| 996 | PluginVCCore::~PluginVCCore() = default; |
| 997 | |
| 998 | PluginVCCore * |
| 999 | PluginVCCore::alloc(Continuation *acceptor, int64_t buffer_index, int64_t buffer_water_mark) |
| 1000 | { |
| 1001 | PluginVCCore *pvc = new PluginVCCore; |
| 1002 | pvc->init(buffer_index, buffer_water_mark); |
| 1003 | pvc->connect_to = acceptor; |
| 1004 | return pvc; |
| 1005 | } |
| 1006 | |
| 1007 | void |
| 1008 | PluginVCCore::init(int64_t buffer_index, int64_t buffer_water_mark) |