⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 clientauthmanager.dot

📁 这是国外的resip协议栈
💻 DOT
字号:
//  names start with cap are states//  names start with app:: are appliction handlers//  names start with dum:: are dum interface to application//  names start with lower case are actions//  names start with on are events//state machine for each realm encountered in a challenge//authentication headers are added in DialogUsageManager::send, but are calculated when processing challengesdigraph ClientAuthManager {//  rankdir=LR;  node [shape = box];  Invalid -> Current [ label = "401/407, create credentials" ];    Current -> Cached  [ label = ">180 && !(401 || 407)" ];  Current -> Current [ label = "401/407 stale=true or different nonce, recreate credentials" ];  Current -> TryOnce [ label = "401/407 different nonce, recreate credentials" ];   Current -> Failed  [ label = "401/407 same nonce and not stale" ];    Cached -> Current [ label = "401/407 no conditions, recreate credentials" ];  TryOnce -> Current [ label = ">180 && !(401 || 407)" ];  TryOnce -> Failed [ label = "401/407" ];}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -