X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/4d9199a0203c54711e764c835bae5945417257e5..33c08942f3dde0afda078e7dfab9c65e413ac6e3:/projects/stargazer/plugins/other/rscript/send_functor.h diff --git a/projects/stargazer/plugins/other/rscript/send_functor.h b/projects/stargazer/plugins/other/rscript/send_functor.h index 8e216295..a14fe20b 100644 --- a/projects/stargazer/plugins/other/rscript/send_functor.h +++ b/projects/stargazer/plugins/other/rscript/send_functor.h @@ -32,16 +32,16 @@ #include <functional> -#include "os_int.h" +#include "stg/os_int.h" -class PacketSender : public std::unary_function<uint32_t, int> { +class PacketSender : public std::unary_function<uint32_t, ssize_t> { public: - PacketSender(int s, char * b, int l, uint16_t p) + PacketSender(int s, char * b, size_t l, uint16_t p) : sock(s), buffer(b), length(l), - port(p) {}; - int operator() (uint32_t ip) + port(p) {} + ssize_t operator() (uint32_t ip) { struct sockaddr_in sendAddr; @@ -54,7 +54,7 @@ class PacketSender : public std::unary_function<uint32_t, int> { private: int sock; char * buffer; - int length; + size_t length; uint16_t port; };