Thanks to visit codestin.com
Credit goes to Github.com

Skip to content

newline characters

Lonny Wong edited this page May 1, 2023 · 1 revision
  • Linux client --> Linux server
+-------------+ +-------------+
| LinuxClient | | LinuxServer |
+-------------+ +-------------+
       |               |
       | ...\n         |
       |-------------->|
       |               |
       |         ...\n |
       |<--------------|
       |               |
  • Linux client --> Windows server
+-------------+ +---------------+
| LinuxClient | | WindowsServer |
+-------------+ +---------------+
       |                |
       | ...!\n         |
       |--------------->|
       |                |
       |         ...!\n |
       |<---------------|
       |                |
  • Windows client --> Linux server
+---------------+ +-------------+
| WindowsClient | | LinuxServer |
+---------------+ +-------------+
        |                |
        | ...\n          |
        |--------------->|
        |                |
        |         ...!\n |
        |<---------------|
        |                |
  • Windows client --> Windows server
+---------------+ +---------------+
| WindowsClient | | WindowsServer |
+---------------+ +---------------+
        |                 |
        | ...!\n          |
        |---------------->|
        |                 |
        |          ...!\n |
        |<----------------|
        |                 |

Source code in https://textart.io/sequence:

object LinuxClient LinuxServer
LinuxClient -> LinuxServer: ...\n
LinuxServer -> LinuxClient: ...\n

object LinuxClient WindowsServer
LinuxClient -> WindowsServer: ...!\n
WindowsServer -> LinuxClient: ...!\n

object WindowsClient LinuxServer
WindowsClient -> LinuxServer: ...\n
LinuxServer -> WindowsClient: ...!\n

object WindowsClient WindowsServer
WindowsClient -> WindowsServer: ...!\n
WindowsServer -> WindowsClient: ...!\n

Clone this wiki locally