Deep ResearchでWebTransport / WebSocketの速度向上について扱った論文一覧を取ってきて、箇条書きで纏めたもの
英語の要約は、Deep Researchで出力された英語を機械翻訳したもの
- WebSocket通信における緊急メッセージの優先配送手法
- 発表年: 2016年
- WebSocket通信において緊急度の高いメッセージを遅延を抑えて配信するため、優先度制御手法を2つ提案した
- 配送遅延や通信量への効果を評価した研究
#include <curl/curl.h> | |
#include <stdbool.h> | |
#include <stdlib.h> | |
#include <string.h> | |
typedef char* PCHAR; | |
typedef void* PVOID; | |
typedef CURL* PCURL; | |
typedef struct curl_slist CurlList; | |
typedef struct curl_slist* PCurlList; |
Deep ResearchでWebTransport / WebSocketの速度向上について扱った論文一覧を取ってきて、箇条書きで纏めたもの
英語の要約は、Deep Researchで出力された英語を機械翻訳したもの
sudo update-grub
sudo shutdown -h now
/** | |
* @file websocket_frame_parse.c | |
* | |
* @brief Parses each parameter of a websocket frame stored in network byte order. | |
* @see RFC6455 (https://datatracker.ietf.org/doc/html/rfc6455) | |
*/ | |
#include <alloca.h> | |
#include <stdio.h> | |
#include <stdint.h> | |
#include <string.h> |
// Ukagaka SSTP send sample | |
#define _WIN32_WINNT 0x0601 // Windows 7 later | |
#include <winsock2.h> | |
#include <ws2tcpip.h> | |
#include <wincrypt.h> | |
#include <stdio.h> | |
#pragma comment(lib, "ws2_32.lib") |
" bsky_client.vim | |
" | |
" use ui.vim: https://github.com/skanehira/ui.vim | |
" use indigo: https://github.com/bluesky-social/indigo | |
let s:cli_path = "./indigo/gosky" | |
let s:auth_path = "./auth.json" | |
let s:pds_host = "https://bsky.social" | |
function! s:set_env() abort |
#include <Windows.h> | |
#include <iostream> | |
#include <winrt/Windows.Foundation.h> | |
#include <winrt/Windows.Foundation.Collections.h> | |
#include <winrt/Windows.Web.Http.h> | |
#include <winrt/Windows.Networking.Sockets.h> | |
#include <winrt/Windows.Storage.Streams.h> | |
#include <winrt/Windows.Data.Json.h> | |
using namespace winrt; |
// Subscribe | |
using System.Net.WebSockets; | |
using System.Text; | |
Uri uri = new("wss://yabu.me/"); | |
using ClientWebSocket ws = new(); | |
await ws.ConnectAsync(uri, default); |