| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2012 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 | 6 |
| 7 #ifndef NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_NACL_SECURE_SERVICE_H_ | 7 #ifndef NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_NACL_SECURE_SERVICE_H_ |
| 8 #define NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_NACL_SECURE_SERVICE_H_ | 8 #define NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_NACL_SECURE_SERVICE_H_ |
| 9 | 9 |
| 10 #include "native_client/src/include/nacl_base.h" | 10 #include "native_client/src/include/nacl_base.h" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 int NaClSecureServiceCtor( | 37 int NaClSecureServiceCtor( |
| 38 struct NaClSecureService *self, | 38 struct NaClSecureService *self, |
| 39 struct NaClApp *nap, | 39 struct NaClApp *nap, |
| 40 struct NaClDesc *service_port, | 40 struct NaClDesc *service_port, |
| 41 struct NaClDesc *sock_addr); | 41 struct NaClDesc *sock_addr); |
| 42 | 42 |
| 43 void NaClSecureServiceDtor(struct NaClRefCount *vself); | 43 void NaClSecureServiceDtor(struct NaClRefCount *vself); |
| 44 | 44 |
| 45 extern struct NaClSimpleServiceVtbl const kNaClSecureServiceVtbl; | 45 extern struct NaClSimpleServiceVtbl const kNaClSecureServiceVtbl; |
| 46 | 46 |
| 47 void NaClSecureCommandChannel(struct NaClApp *nap); | |
| 48 | |
| 49 EXTERN_C_END | 47 EXTERN_C_END |
| 50 | 48 |
| 51 #endif /* NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_NACL_SECURE_SERVICE_H_ */ | 49 #endif /* NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_NACL_SECURE_SERVICE_H_ */ |
| OLD | NEW |