Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion alvr/packets/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ pub enum ClientConnectionResult {
ConnectionAccepted {
client_protocol_id: u64,
display_name: String,
server_ip: IpAddr,
server_ip: IpAddr, // must be unused for now
streaming_capabilities: Option<VideoStreamingCapabilitiesLegacy>, // todo: use String
},
ClientStandby,
Expand Down
7 changes: 0 additions & 7 deletions alvr/server_core/src/c_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -551,13 +551,6 @@ pub unsafe extern "C" fn alvr_duration_until_next_vsync(out_ns: *mut u64) -> boo
}
}

#[no_mangle]
pub unsafe extern "C" fn alvr_restart() {
if let Some(context) = SERVER_CORE_CONTEXT.write().take() {
context.restart();
}
}

#[no_mangle]
pub unsafe extern "C" fn alvr_shutdown() {
SERVER_CORE_CONTEXT.write().take();
Expand Down
Loading
Loading