Commit f45eb9c4 authored by Davis King's avatar Davis King

updated docs

parent 37a8bfeb
...@@ -288,6 +288,14 @@ ...@@ -288,6 +288,14 @@
<name>Sockstreambuf</name> <name>Sockstreambuf</name>
<link>sockstreambuf_ex.cpp.html</link> <link>sockstreambuf_ex.cpp.html</link>
</item> </item>
<item>
<name>IO Streams Server</name>
<link>server_iostream_ex.cpp.html</link>
</item>
<item>
<name>IO Socket Streams</name>
<link>iosockstream_ex.cpp.html</link>
</item>
<item> <item>
<name>Logger</name> <name>Logger</name>
<link>logger_ex.cpp.html</link> <link>logger_ex.cpp.html</link>
...@@ -316,10 +324,6 @@ ...@@ -316,10 +324,6 @@
<name>Sockets</name> <name>Sockets</name>
<link>sockets_ex.cpp.html</link> <link>sockets_ex.cpp.html</link>
</item> </item>
<item>
<name>Sockets_2</name>
<link>sockets_ex_2.cpp.html</link>
</item>
<item> <item>
<name>Queue</name> <name>Queue</name>
<link>queue_ex.cpp.html</link> <link>queue_ex.cpp.html</link>
......
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
<item>server_http</item> <item>server_http</item>
<item>bridge</item> <item>bridge</item>
<item>sockstreambuf</item> <item>sockstreambuf</item>
<item>iosockstream</item>
</section> </section>
<section> <section>
...@@ -175,7 +176,6 @@ ...@@ -175,7 +176,6 @@
<examples> <examples>
<example>sockets_ex.cpp.html</example> <example>sockets_ex.cpp.html</example>
<example>sockstreambuf_ex.cpp.html</example>
</examples> </examples>
</component> </component>
...@@ -191,6 +191,9 @@ ...@@ -191,6 +191,9 @@
the on_connect() function so that instead of giving you a connection object you the on_connect() function so that instead of giving you a connection object you
get an istream and ostream object. get an istream and ostream object.
</description> </description>
<examples>
<example>server_iostream_ex.cpp.html</example>
</examples>
</component> </component>
<!-- ************************************************************************* --> <!-- ************************************************************************* -->
...@@ -209,6 +212,23 @@ ...@@ -209,6 +212,23 @@
</examples> </examples>
</component> </component>
<!-- ************************************************************************* -->
<component>
<name>iosockstream</name>
<file>dlib/iosockstream.h</file>
<spec_file>dlib/iosockstream/iosockstream_abstract.h</spec_file>
<description>
This is an iostream object that reads/writes from a TCP network connection.
</description>
<examples>
<example>iosockstream_ex.cpp.html</example>
</examples>
</component>
<!-- ************************************************************************* --> <!-- ************************************************************************* -->
<component> <component>
...@@ -221,7 +241,6 @@ ...@@ -221,7 +241,6 @@
<examples> <examples>
<example>sockstreambuf_ex.cpp.html</example> <example>sockstreambuf_ex.cpp.html</example>
<example>sockets_ex_2.cpp.html</example>
</examples> </examples>
</component> </component>
......
...@@ -1240,6 +1240,7 @@ ...@@ -1240,6 +1240,7 @@
<term file="network.html" name="server_http"/> <term file="network.html" name="server_http"/>
<term link="network.html#server_http" name="HTTP server"/> <term link="network.html#server_http" name="HTTP server"/>
<term file="network.html" name="sockstreambuf"/> <term file="network.html" name="sockstreambuf"/>
<term file="network.html" name="iosockstream"/>
<term file="network.html" name="bridge"/> <term file="network.html" name="bridge"/>
<term file="dlib/bridge/bridge_abstract.h.html" name="connect_to_ip_and_port"/> <term file="dlib/bridge/bridge_abstract.h.html" name="connect_to_ip_and_port"/>
<term file="dlib/bridge/bridge_abstract.h.html" name="connect_to"/> <term file="dlib/bridge/bridge_abstract.h.html" name="connect_to"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment