brintos

brintos / linux-shallow public Read only

0
0
Text · 833 B · 025e8cf Raw
19 lines · plain
1digraph conn_states {2	StandAllone  -> WFConnection   [ label = "ioctl_set_net()" ]3	WFConnection -> Unconnected    [ label = "unable to bind()" ]4	WFConnection -> WFReportParams [ label = "in connect() after accept" ]5	WFReportParams -> StandAllone  [ label = "checks in receive_param()" ]6	WFReportParams -> Connected    [ label = "in receive_param()" ]7	WFReportParams -> WFBitMapS    [ label = "sync_handshake()" ]8	WFReportParams -> WFBitMapT    [ label = "sync_handshake()" ]9	WFBitMapS -> SyncSource        [ label = "receive_bitmap()" ]10	WFBitMapT -> SyncTarget        [ label = "receive_bitmap()" ]11	SyncSource -> Connected12	SyncTarget -> Connected13	SyncSource -> PausedSyncS14	SyncTarget -> PausedSyncT15	PausedSyncS -> SyncSource16	PausedSyncT -> SyncTarget17	Connected   -> WFConnection    [ label = "* on network error" ]18}19