]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/other/rscript/send_functor.h
Fix build on FreeBSD.
[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/in.h>
37 #include <netinet/ip.h>
38
39 class PacketSender : public std::unary_function<uint32_t, ssize_t> {
40     public:
41         PacketSender(int s, char * b, size_t l, uint16_t p)
42             : sock(s),
43               buffer(b),
44               length(l),
45               port(p) {}
46         ssize_t operator() (uint32_t ip)
47         {
48         struct sockaddr_in sendAddr;
49
50         sendAddr.sin_family = AF_INET;
51         sendAddr.sin_port = port;
52         sendAddr.sin_addr.s_addr = ip;
53
54         return sendto(sock, buffer, length, 0, (struct sockaddr*)&sendAddr, sizeof(sendAddr));
55         }
56     private:
57         int sock;
58         char * buffer;
59         size_t length;
60         uint16_t port;
61 };
62
63 #endif