blob: 38ef3e2bedc48cceca567843c5ef57fca5c6f514 [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <nos/CitadelClient.h>
namespace nos {
CitadelClient::~CitadelClient() {
Close();
}
void CitadelClient::Open() {
// TODO: implement
}
void CitadelClient::Close() {
// TODO: implement
}
bool CitadelClient::IsOpen() const {
// TODO: implement
return false;
}
uint32_t CitadelClient::CallApp(uint32_t appId, uint16_t arg,
const std::vector<uint8_t>& request,
std::vector<uint8_t>* response) {
// TODO: implement
(void) appId;
(void) arg;
(void) request;
(void) response;
return 3; // Currently APP_ERROR_DRIVER
}
} // namespace nos