lib/mdns/src/Address.h
changeset 2289 10ad22c88dbb
child 2310a2bf097f3756
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/lib/mdns/src/Address.h	Thu Mar 26 01:25:34 2009 +0100
     1.3 @@ -0,0 +1,36 @@
     1.4 +/*
     1.5 +OLSR MDNS plugin.
     1.6 +Written by Saverio Proto <zioproto@gmail.com> and Claudio Pisa <clauz@ninux.org>.
     1.7 +
     1.8 +    This file is part of OLSR MDNS PLUGIN.
     1.9 +
    1.10 +    The OLSR MDNS PLUGIN is free software: you can redistribute it and/or modify
    1.11 +    it under the terms of the GNU General Public License as published by
    1.12 +    the Free Software Foundation, either version 3 of the License, or
    1.13 +    (at your option) any later version.
    1.14 +
    1.15 +    The OLSR MDNS PLUGIN is distributed in the hope that it will be useful,
    1.16 +    but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.17 +    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.18 +    GNU General Public License for more details.
    1.19 +
    1.20 +    You should have received a copy of the GNU General Public License
    1.21 +    along with Foobar.  If not, see <http://www.gnu.org/licenses/>.
    1.22 +
    1.23 +
    1.24 + */
    1.25 +
    1.26 +
    1.27 +#ifndef _MDNS_ADDRESS_H
    1.28 +#define _MDNS_ADDRESS_H
    1.29 +
    1.30 +#include "olsr_types.h" /* olsr_ip_addr */
    1.31 +#include "plugin.h"     /* union set_plugin_parameter_addon */
    1.32 +#include "interfaces.h" /* struct interface */
    1.33 +
    1.34 +struct TBmfInterface;
    1.35 +
    1.36 +int IsMulticast(union olsr_ip_addr* ipAddress);
    1.37 +
    1.38 +#endif /* _MDNS_ADDRESS_H */
    1.39 +