From 0cd8482f07aadab6de27aa7395de5408737093ad Mon Sep 17 00:00:00 2001 From: William 'psyFi' Hatcher Date: Sun, 13 Aug 2017 06:32:12 -0500 Subject: Rename docs folder to dev-docs (#3898) + Add reference to Lua API documentation * Renamed docs folder to dev-docs Per issue #3896's discussion, we thought that renaming the `/docs` folder to `/dev-docs` help reduce confusion. --- docs/SocketThreads states.gv | 77 -------------------------------------------- 1 file changed, 77 deletions(-) delete mode 100644 docs/SocketThreads states.gv (limited to 'docs/SocketThreads states.gv') diff --git a/docs/SocketThreads states.gv b/docs/SocketThreads states.gv deleted file mode 100644 index 5afaa5370..000000000 --- a/docs/SocketThreads states.gv +++ /dev/null @@ -1,77 +0,0 @@ -digraph -{ - node - [ - shape="box" - ] - - edge - [ - d - ] - - // Forward-declarations of nodes (so that they are laid out in a specific order: - ssNormal - ssWritingRestOut - ssShuttingDown - ssShuttingDown2 - - // Nodes with special labels / shapes: - ForceClose - [ - label="Force close" - shape="ellipse" - ] - X - [ - label="Socket closed" - shape="ellipse" - ] - - // Edges: - ssNormal -> ssWritingRestOut - [ - label="cSocketThreads::RemoveClient()" - ] - ssWritingRestOut -> ssShuttingDown - [ - label="All outgoing data written" - ] - ssShuttingDown -> ssShuttingDown2 - [ - label="One thread loop" - ] - ssShuttingDown2 -> ForceClose - [ - label="One thread loop" - ] - ssNormal -> ssRemoteClosed - [ - label="Remote closed" - color="red" - fontcolor="red" - ] - ssWritingRestOut -> X - [ - label="Remote closed" - color="red" - fontcolor="red" - ] - ssShuttingDown -> X - [ - label="Remote closed" - color="red" - fontcolor="red" - ] - ssShuttingDown2 -> X - [ - label="Remote closed" - color="red" - fontcolor="red" - ] - ssRemoteClosed -> X - [ - label="cSocketThreads::RemoveClient()" - ] - ForceClose -> X -} -- cgit v1.2.3