1
0
Fork 0
VS_LET/03-tcp/tcp.filer_solution/justfile

13 lines
316 B
Plaintext

import '../justfile'
port := "4747"
server-iterativ backlog_size:
just exec vs.FileServerIterativ "{{port}} {{backlog_size}}"
server-threaded:
just exec vs.FileServerThreaded {{port}}
server-pool:
just exec vs.FileServerThreadPool {{port}}
client host:
just exec vs.FileClient "{{host}} {{port}}"