VNPL 1.1 is slightly reworded to make it clear that proprietary software interacting with Vitastor and providing some kind of service to end users isn't a "Proxy Program" if it's not specially designed to be used with Vitastor. For example, Windows OS running in a virtual machine stored in a Vitastor cluster clearly isn't.
23 lines
410 B
C++
23 lines
410 B
C++
// Copyright (c) Vitaliy Filippov, 2019+
|
|
// License: VNPL-1.1 or GNU GPL-2.0+ (see README.md for details)
|
|
|
|
#include "osd_ops.h"
|
|
|
|
const char* osd_op_names[] = {
|
|
"",
|
|
"read",
|
|
"write",
|
|
"write_stable",
|
|
"sync",
|
|
"stabilize",
|
|
"rollback",
|
|
"delete",
|
|
"sync_stab_all",
|
|
"list",
|
|
"show_config",
|
|
"primary_read",
|
|
"primary_write",
|
|
"primary_sync",
|
|
"primary_delete",
|
|
};
|