]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/other/rscript/send_functor.h
Various fixes of issues reported by static analyzers.
[stg.git] / projects / stargazer / plugins / other / rscript / send_functor.h
1 /*
2  *    This program is free software; you can redistribute it and/or modify
3  *    it under the terms of the GNU General Public License as published by
4  *    the Free Software Foundation; either version 2 of the License, or
5  *    (at your option) any later version.
6  *
7  *    This program is distributed in the hope that it will be useful,
8  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *    GNU General Public License for more details.
11  *
12  *    You should have received a copy of the GNU General Public License
13  *    along with this program; if not, write to the Free Software
14  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15  */
16
17 /*
18  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
19  */
20
21 /*
22  $Revision: 1.2 $
23  $Date: 2010/03/04 12:11:09 $
24  $Author: faust $
25 */
26
27 #ifndef __SEND_FUNCTOR_H__
28 #define __SEND_FUNCTOR_H__
29
30 #include "stg/os_int.h"
31
32 #include <functional>
33
34 #include <sys/types.h>
35 #include <sys/socket.h>
36 #include <netinet/ip.h>
37
38 class PacketSender : public std::unary_function<uint32_t, ssize_t> {
39     public:
40         PacketSender(int s, char * b, size_t l, uint16_t p)
41             : sock(s),
42               buffer(b),
43               length(l),
44               port(p) {}
45         ssize_t operator() (uint32_t ip)
46         {
47         struct sockaddr_in sendAddr;
48
49         sendAddr.sin_family = AF_INET;
50         sendAddr.sin_port = port;
51         sendAddr.sin_addr.s_addr = ip;
52
53         return sendto(sock, buffer, length, 0, (struct sockaddr*)&sendAddr, sizeof(sendAddr));
54         }
55     private:
56         int sock;
57         char * buffer;
58         size_t length;
59         uint16_t port;
60 };
61
62 #endif