Compare commits

...

3 Commits

Author SHA1 Message Date
Benjamin Sergeant
d39ae478a2 linux build fix 2019-02-22 21:56:22 -08:00
Benjamin Sergeant
e881b82511 Update README.md 2019-02-22 21:53:29 -08:00
Benjamin Sergeant
d5551e5d68 mv cobra_publisher under ws folder 2019-02-22 21:51:03 -08:00
17 changed files with 5 additions and 11 deletions

View File

@@ -1,7 +0,0 @@
add_subdirectory(broadcast_server)
add_subdirectory(ping_pong)
add_subdirectory(chat)
add_subdirectory(echo_server)
add_subdirectory(ws_connect)
# add_subdirectory(cobra_publisher)

View File

@@ -1,10 +1,10 @@
```
# Start transfer server, which is just a broadcast server at this point
./ws transfer # running on port 8080.
# Start receiver first
./ws receive ws://localhost:8080
# Sender
# Then send a file. File will be received and written to disk by the receiver process
./ws send ws://localhost:8080 /file/to/path
# Server
./ws transfer # running on port 8080.
```

View File

@@ -6,6 +6,7 @@
#pragma once
#include <cstdint>
#include <vector>
namespace ix