Partway through the SSL refactor, code is operational again (in plaintext)

This commit is contained in:
2022-01-09 21:41:28 -05:00
parent c5bf032db0
commit 2e6f924737
3 changed files with 190 additions and 110 deletions

View File

@@ -236,10 +236,6 @@ int DrivenEngine::drv_notify_accept(int port) {
return chid;
}
void DrivenEngine::drv_set_clock(double t) {
clock_ = t;
}
void DrivenEngine::drv_set_lua_source(util::LuaSourcePtr source) {
lua_source_ = std::move(source);
rescan_lua_source_ = false;
@@ -249,7 +245,8 @@ void DrivenEngine::drv_invoke_event_init(int argc, char *argv[]) {
event_init(argc, argv);
}
void DrivenEngine::drv_invoke_event_update() {
void DrivenEngine::drv_invoke_event_update(double clock) {
clock_ = clock;
event_update();
}