summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorTobias Frust <tobiasfrust@Tobiass-MacBook-Pro.fritz.box>2016-06-29 21:44:58 +0200
committerTobias Frust <tobiasfrust@Tobiass-MacBook-Pro.fritz.box>2016-06-29 21:44:58 +0200
commit1dc95b4eed7974549ef43a87e0777aa343b30fd4 (patch)
treec61eaa825e4b873354318f1fdc776fa53b2d303e /src/main.cpp
parent38b0d8ad024d11fa643934b0c56690b0e57c3e35 (diff)
downloadods-1dc95b4eed7974549ef43a87e0777aa343b30fd4.tar.gz
ods-1dc95b4eed7974549ef43a87e0777aa343b30fd4.tar.bz2
ods-1dc95b4eed7974549ef43a87e0777aa343b30fd4.tar.xz
ods-1dc95b4eed7974549ef43a87e0777aa343b30fd4.zip
added client and server executable for testing simple udp packet transfer
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 2ff08b2..6898a09 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -12,10 +12,15 @@ int main (int argc, char *argv[]){
UDPClient client = UDPClient(address, port);
- std::string msg = "test";
- std::size_t length{msg.size()};
+ std::size_t length{8008};
- client.send(msg.c_str(), length);
+ char buf[length];
+ for(auto i = 0; i < length; i++){
+ *(buf+i) = i%128;
+ }
+
+
+ client.send(buf, length);
return 0;