Add support for unpin command in dinitctl (includes corresponding
[oweals/dinit.git] / src / control-cmds.h
1 // Dinit control command packet types
2
3 // Requests:
4
5 // Query protocol version:
6 constexpr static int DINIT_CP_QUERYVERSION = 0;
7
8 // Find (but don't load) a service:
9 constexpr static int DINIT_CP_FINDSERVICE = 1;
10
11 // Find or load a service:
12 constexpr static int DINIT_CP_LOADSERVICE = 2;
13
14 // Start or stop a service:
15 constexpr static int DINIT_CP_STARTSERVICE = 3;
16 constexpr static int DINIT_CP_STOPSERVICE  = 4;
17 constexpr static int DINIT_CP_WAKESERVICE = 5;
18 constexpr static int DINIT_CP_RELEASESERVICE = 6;
19
20 constexpr static int DINIT_CP_UNPINSERVICE = 7;
21
22 // Shutdown:
23 constexpr static int DINIT_CP_SHUTDOWN = 10;
24  // followed by 1-byte shutdown type
25
26
27
28 // Replies:
29
30 // Reply: ACK/NAK to request
31 constexpr static int DINIT_RP_ACK = 50;
32 constexpr static int DINIT_RP_NAK = 51;
33
34 // Request was bad (connection will be closed)
35 constexpr static int DINIT_RP_BADREQ = 52;
36
37 // Connection being closed due to out-of-memory condition
38 constexpr static int DINIT_RP_OOM = 53;
39
40 // Start service replies:
41 constexpr static int DINIT_RP_SERVICELOADERR = 54;
42 constexpr static int DINIT_RP_SERVICEOOM = 55; // couldn't start due to out-of-memory
43
44 constexpr static int DINIT_RP_SSISSUED = 56;  // service start/stop was issued (includes 4-byte service handle)
45 constexpr static int DINIT_RP_SSREDUNDANT = 57;  // service was already started/stopped (or for stop, not loaded)
46
47 // Query version response:
48 constexpr static int DINIT_RP_CPVERSION = 58;
49
50 // Service record loaded/found
51 constexpr static int DINIT_RP_SERVICERECORD = 59;
52 //     followed by 4-byte service handle, 1-byte service state
53
54 // Couldn't find/load service
55 constexpr static int DINIT_RP_NOSERVICE = 60;
56
57 // Service is already started/stopped
58 constexpr static int DINIT_RP_ALREADYSS = 61;
59
60
61
62 // Information:
63
64 // Service event occurred (4-byte service handle, 1 byte event code)
65 constexpr static int DINIT_IP_SERVICEEVENT = 100;
66
67 // rollback completed
68 constexpr static int DINIT_ROLLBACK_COMPLETED = 101;