This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local on_windows = vim.loop.os_uname().version:match 'Windows' | |
| local function join_paths(...) | |
| local path_sep = on_windows and '\\' or '/' | |
| local result = table.concat({ ... }, path_sep) | |
| return result | |
| end | |
| vim.cmd [[set runtimepath=$VIMRUNTIME]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //! Board Support Crate (BSC) for the nRF52840 Development Kit | |
| #![deny(missing_docs)] | |
| #![no_std] | |
| use core::{ | |
| convert::TryFrom, | |
| fmt, ops, | |
| sync::atomic::{self, Ordering}, | |
| time::Duration, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * Sending first request: | |
| ConnectionCore::for_client(server_name=DnsName("localhost")) | |
| start_handshake(server_name=DnsName("localhost")) | |
| emit_client_hello_for_retry() | |
| CommonState::send_msg(m.typ=Handshake::ClientHello, must_encrypt=false) | |
| CommonState::queue_tls_message(m.payload.len=231, m.typ=Handshake) | |
| ChunkVecBuffer::append(bytes.len=236) <<<BUFFERING>>> | |
| Stream::complete_prior_io() | |
| ConnectionCommon::complete_io() | |
| ConnectionCommon::write_tls() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * Sending first request: | |
| ConnectionCore::for_client(server_name=DnsName("localhost")) | |
| start_handshake(server_name=DnsName("localhost")) | |
| emit_client_hello_for_retry() | |
| CommonState::send_msg(m.typ=Handshake::ClientHello, must_encrypt=false) | |
| CommonState::queue_tls_message(m.payload.len=231, m.typ=Handshake) | |
| ChunkVecBuffer::append(bytes.len=236) <<<BUFFERING>>> | |
| Stream::complete_prior_io() | |
| ConnectionCommon::complete_io() | |
| ConnectionCommon::write_tls() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| amd-ucode | |
| baobab | |
| base | |
| base-devel | |
| bat | |
| bluez | |
| bluez-utils | |
| cheese | |
| chromium | |
| clang |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Running `/home/christian/Workspace/ferrous-systems/rustls/rustls/target/debug/tl | |
| sclient-mio --http --port 1443 --cafile /home/christian/.local/share/mkcert/rootCA.pe | |
| m --auth-key localhost_client-client-key.pem --auth-certs localhost_client-client.pem | |
| localhost` | |
| ConnectionCore::for_client(server_name=DnsName("localhost")) | |
| start_handshake(server_name=DnsName("localhost")) | |
| emit_client_hello_for_retry() | |
| CommonState::send_msg(m.typ=Handshake::ClientHello, must_encrypt=false) | |
| CommonState::queue_tls_message(m.payload.len=231, m.typ=Handshake) | |
| ChunkVecBuffer::append(bytes.len=236) <<<BUFFERING>>> |
OlderNewer