Skip to content

Commit

Permalink
Make connection handle public
Browse files Browse the repository at this point in the history
Required for some vendor specific HCI commands.
  • Loading branch information
lulf committed May 3, 2024
1 parent ce971f5 commit 8a2f4ac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion host/src/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ impl Connection {
Self { handle }
}

pub(crate) fn handle(&self) -> ConnHandle {
/// Connection handle of this connection.
pub fn handle(&self) -> ConnHandle {
self.handle
}

Expand Down

0 comments on commit 8a2f4ac

Please sign in to comment.