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.
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.
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
18 * Author : Maxim Mamontov <faust@stargazer.dp.ua>
23 $Date: 2010/03/04 12:11:09 $
27 #ifndef __SEND_FUNCTOR_H__
28 #define __SEND_FUNCTOR_H__
33 #include <sys/types.h>
34 #include <sys/socket.h>
35 #include <netinet/in.h>
36 #include <netinet/ip.h>
38 class PacketSender : public std::unary_function<uint32_t, ssize_t> {
40 PacketSender(int s, char * b, size_t l, uint16_t p)
45 ssize_t operator() (uint32_t ip)
47 struct sockaddr_in sendAddr;
49 sendAddr.sin_family = AF_INET;
50 sendAddr.sin_port = port;
51 sendAddr.sin_addr.s_addr = ip;
53 return sendto(sock, buffer, length, 0, (struct sockaddr*)&sendAddr, sizeof(sendAddr));