Skip to content

Commit b252593

Browse files
committed
Docs: Updating code name
1 parent bf29816 commit b252593

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/server.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Stateless blocking server example: Each time you receive a packet, it will be of
55
If the handle/setup fails, the ``finish`` function will be executed.
66

77
.. code-block:: python
8-
:caption: Sending data
9-
:name: Sending data
8+
:caption: Blocking Stateless
9+
:name: Blocking Stateless
1010
1111
from rawsocketpy import RawServer, RawRequestHandler
1212
@@ -31,8 +31,8 @@ If the handle/setup fails, the ``finish`` function will be executed.
3131
**Statefull** and **blocking** server using a centralised callback. It does guarantee that the callback is called in ethernet packet order, but if the execution is long, you will loose packets.
3232

3333
.. code-block:: python
34-
:caption: Sending data
35-
:name: Sending data
34+
:caption: Blocking Statefull
35+
:name: Blocking Statefull
3636
3737
from rawsocketpy import RawServerCallback, RawRequestHandler
3838

0 commit comments

Comments
 (0)