OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 #ifndef NATIVE_CLIENT_SRC_TRUSTED_REVERSE_SERVICE_REVERSE_CONTROL_RPC_H_ | 6 #ifndef NATIVE_CLIENT_SRC_TRUSTED_REVERSE_SERVICE_REVERSE_CONTROL_RPC_H_ |
7 #define NATIVE_CLIENT_SRC_TRUSTED_REVERSE_SERVICE_REVERSE_CONTROL_RPC_H_ | 7 #define NATIVE_CLIENT_SRC_TRUSTED_REVERSE_SERVICE_REVERSE_CONTROL_RPC_H_ |
8 | 8 |
9 /* | 9 /* |
10 * Reverse channel control RPCs. Used by the service runtime reverse | 10 * Reverse channel control RPCs. Used by the service runtime reverse |
11 * setup proceedure, testing, and by the manifest proxy to add a new | 11 * setup proceedure, testing, and by the manifest proxy to add a new |
12 * client channel. | 12 * client channel. |
13 */ | 13 */ |
14 | 14 |
15 #define NACL_REVERSE_CONTROL_TEST "test:s:" | 15 #define NACL_REVERSE_CONTROL_TEST "test:s:" |
16 #define NACL_REVERSE_CONTROL_LOG "log:s:" | 16 #define NACL_REVERSE_CONTROL_LOG "log:s:" |
17 #define NACL_REVERSE_CONTROL_ADD_CHANNEL "add_channel::b" | 17 #define NACL_REVERSE_CONTROL_ADD_CHANNEL "add_channel::b" |
18 #define NACL_REVERSE_CONTROL_INIT_DONE "init_done::" | 18 #define NACL_REVERSE_CONTROL_INIT_DONE "init_done::" |
19 #define NACL_REVERSE_CONTROL_REPORT_STATUS "exit_status:i:" | 19 #define NACL_REVERSE_CONTROL_REPORT_STATUS "exit_status:i:" |
| 20 #define NACL_REVERSE_CONTROL_POST_MESSAGE "post_message:C:i" |
20 | 21 |
21 #endif | 22 #endif |
OLD | NEW |