- M0: libghostty SSH 终端(渲染/输入/连接)+ 白屏修复(OutputGate) + 会话状态机/自动重连 - M1: tsnet 用户态组网 + SSH-over-tsnet(fd 桥),shell 级真机验证;R5(Go+gvisor+C+++Swift 同进程) retire - M1.5: tmux -CC 原生 tab(MVP) - 结构: packages/(TXCore·TXTransport), apps/TerminalX, vendor/(libghostty-spm/libssh2/mbedtls/tsnet-bridge), artifacts/ - 文档: CLAUDE.md + docs/HANDOFF.md(新会话入口) - 环境: 认证代理→依赖 vendor 本地化;Go 在 ~/.local/go;仅模拟器/未签名 - 待续: M2 mosh, tmux 多 pane, M4 安全(host key/SE) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
56 lines
2.2 KiB
Plaintext
56 lines
2.2 KiB
Plaintext
PROJECT_NAME = "Mbed TLS v3.6.7"
|
|
OUTPUT_DIRECTORY = ../apidoc/
|
|
FULL_PATH_NAMES = NO
|
|
OPTIMIZE_OUTPUT_FOR_C = YES
|
|
EXTRACT_ALL = YES
|
|
EXTRACT_PRIVATE = YES
|
|
EXTRACT_STATIC = YES
|
|
CASE_SENSE_NAMES = NO
|
|
INPUT = ../include input ../tests/include/alt-dummy
|
|
FILE_PATTERNS = *.h
|
|
RECURSIVE = YES
|
|
EXCLUDE_SYMLINKS = YES
|
|
SOURCE_BROWSER = YES
|
|
REFERENCED_BY_RELATION = YES
|
|
REFERENCES_RELATION = YES
|
|
ALPHABETICAL_INDEX = NO
|
|
HTML_OUTPUT = .
|
|
HTML_TIMESTAMP = YES
|
|
SEARCHENGINE = YES
|
|
GENERATE_LATEX = NO
|
|
GENERATE_XML = YES
|
|
MACRO_EXPANSION = YES
|
|
EXPAND_ONLY_PREDEF = YES
|
|
INCLUDE_PATH = ../include
|
|
EXPAND_AS_DEFINED = MBEDTLS_PRIVATE
|
|
CLASS_DIAGRAMS = NO
|
|
HAVE_DOT = YES
|
|
DOT_GRAPH_MAX_NODES = 200
|
|
MAX_DOT_GRAPH_DEPTH = 1000
|
|
DOT_TRANSPARENT = YES
|
|
|
|
# We mostly use \retval declarations to document which error codes a function
|
|
# can return. The reader can follow the hyperlink to the definition of the
|
|
# constant to get the generic documentation of that error code. If we don't
|
|
# have anything to say about the specific error code for the specific
|
|
# function, we can leave the description part of the \retval command blank.
|
|
# This is perfectly valid as far as Doxygen is concerned. However, with
|
|
# Clang >=15, the -Wdocumentation option emits a warning for empty
|
|
# descriptions.
|
|
# https://github.com/Mbed-TLS/mbedtls/issues/6960
|
|
# https://github.com/llvm/llvm-project/issues/60315
|
|
# As a workaround, you can write something like
|
|
# \retval #PSA_ERROR_INSUFFICIENT_MEMORY \emptydescription
|
|
# This avoids writing redundant text and keeps Clang happy.
|
|
ALIASES += emptydescription=""
|
|
|
|
# Define away Mbed TLS macros that make parsing definitions difficult.
|
|
# MBEDTLS_DEPRECATED is not included in this list as it's important to
|
|
# display deprecated status in the documentation.
|
|
PREDEFINED = "MBEDTLS_CHECK_RETURN_CRITICAL=" \
|
|
"MBEDTLS_CHECK_RETURN_TYPICAL=" \
|
|
"MBEDTLS_CHECK_RETURN_OPTIONAL=" \
|
|
"MBEDTLS_PRINTF_ATTRIBUTE(a,b)=" \
|
|
"__DOXYGEN__" \
|
|
|