clientauthmanager.dot

来自「这是国外的resip协议栈」· DOT 代码 · 共 25 行

DOT
25
字号
//  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 + =
减小字号Ctrl + -
显示快捷键?