mirror of https://github.com/davisking/dlib.git
updated docs
This commit is contained in:
parent
37a8bfebc9
commit
f45eb9c404
|
@ -288,6 +288,14 @@
|
|||
<name>Sockstreambuf</name>
|
||||
<link>sockstreambuf_ex.cpp.html</link>
|
||||
</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>
|
||||
<name>Logger</name>
|
||||
<link>logger_ex.cpp.html</link>
|
||||
|
@ -316,10 +324,6 @@
|
|||
<name>Sockets</name>
|
||||
<link>sockets_ex.cpp.html</link>
|
||||
</item>
|
||||
<item>
|
||||
<name>Sockets_2</name>
|
||||
<link>sockets_ex_2.cpp.html</link>
|
||||
</item>
|
||||
<item>
|
||||
<name>Queue</name>
|
||||
<link>queue_ex.cpp.html</link>
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
<item>server_http</item>
|
||||
<item>bridge</item>
|
||||
<item>sockstreambuf</item>
|
||||
<item>iosockstream</item>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
|
@ -175,7 +176,6 @@
|
|||
|
||||
<examples>
|
||||
<example>sockets_ex.cpp.html</example>
|
||||
<example>sockstreambuf_ex.cpp.html</example>
|
||||
</examples>
|
||||
|
||||
</component>
|
||||
|
@ -191,6 +191,9 @@
|
|||
the on_connect() function so that instead of giving you a connection object you
|
||||
get an istream and ostream object.
|
||||
</description>
|
||||
<examples>
|
||||
<example>server_iostream_ex.cpp.html</example>
|
||||
</examples>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************************************* -->
|
||||
|
@ -209,6 +212,23 @@
|
|||
</examples>
|
||||
</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>
|
||||
|
@ -221,7 +241,6 @@
|
|||
|
||||
<examples>
|
||||
<example>sockstreambuf_ex.cpp.html</example>
|
||||
<example>sockets_ex_2.cpp.html</example>
|
||||
</examples>
|
||||
|
||||
</component>
|
||||
|
|
|
@ -1240,6 +1240,7 @@
|
|||
<term file="network.html" name="server_http"/>
|
||||
<term link="network.html#server_http" name="HTTP server"/>
|
||||
<term file="network.html" name="sockstreambuf"/>
|
||||
<term file="network.html" name="iosockstream"/>
|
||||
<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"/>
|
||||
|
|
Loading…
Reference in New Issue