forked from leuchter/VS_LET
14 lines
318 B
Plaintext
14 lines
318 B
Plaintext
import '../justfile'
|
|
|
|
port := "4747"
|
|
|
|
server-iterativ backlog_size:
|
|
just exec vs.EchoServerIterativ "{{port}} {{backlog_size}}"
|
|
server-threaded:
|
|
just exec vs.EchoServerThreaded {{port}}
|
|
server-pool:
|
|
just exec vs.EchoServerThreadPool {{port}}
|
|
client host:
|
|
just exec vs.EchoClient "{{host}} {{port}}"
|
|
|