2011-04-10 13:51:52 +00:00
|
|
|
/*
|
|
|
|
* tinysvcmdns - a tiny MDNS implementation for publishing services
|
|
|
|
* Copyright (C) 2011 Darell Tan
|
2012-03-26 15:03:55 +00:00
|
|
|
* All rights reserved.
|
2011-04-10 13:51:52 +00:00
|
|
|
*
|
2012-03-26 15:03:55 +00:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2011-04-10 13:51:52 +00:00
|
|
|
*/
|
|
|
|
|
2013-01-17 15:24:10 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <winsock2.h>
|
|
|
|
#include <in6addr.h>
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
#else
|
2011-04-10 13:51:52 +00:00
|
|
|
#include <sys/socket.h>
|
2013-01-17 15:24:10 +00:00
|
|
|
#include <netdb.h>
|
2011-04-10 13:51:52 +00:00
|
|
|
#include <arpa/inet.h>
|
2013-01-17 15:24:10 +00:00
|
|
|
#endif
|
|
|
|
|
2011-04-10 13:51:52 +00:00
|
|
|
#include <stdio.h>
|
2020-07-19 19:38:23 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2011-04-10 13:51:52 +00:00
|
|
|
#include "mdns.h"
|
|
|
|
#include "mdnsd.h"
|
|
|
|
|
2020-07-19 19:38:23 +00:00
|
|
|
void
|
|
|
|
background()
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
switch ((int)fork())
|
|
|
|
{
|
|
|
|
case -1:
|
|
|
|
perror("fork");
|
|
|
|
exit(1);
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
exit(0);
|
2011-04-10 13:51:52 +00:00
|
|
|
}
|
|
|
|
|
2020-07-19 19:38:23 +00:00
|
|
|
#ifdef TIOCNOTTY
|
|
|
|
if (ioctl(fileno(stdin), TIOCNOTTY) == -1)
|
|
|
|
perror("detach_console");
|
|
|
|
#endif
|
|
|
|
freopen("/dev/null", "r", stdin);
|
|
|
|
|
|
|
|
fd = open("/dev/null", O_WRONLY, 0666);
|
|
|
|
dup2(fd, fileno(stdout));
|
|
|
|
dup2(fd, fileno(stderr));
|
|
|
|
close(fd);
|
2011-04-10 13:51:52 +00:00
|
|
|
|
2020-07-19 19:38:23 +00:00
|
|
|
setsid();
|
|
|
|
}
|
2011-04-10 13:51:52 +00:00
|
|
|
|
2020-07-19 19:38:23 +00:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
char hostname[0x100], ifname[0x100];
|
|
|
|
struct hostent *hp;
|
|
|
|
struct in_addr saddr;
|
|
|
|
|
|
|
|
if (gethostname(hostname, sizeof(hostname) - 1) == -1)
|
|
|
|
{
|
|
|
|
printf("Couldn't retrieve humax hostname.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2012-12-21 17:02:50 +00:00
|
|
|
|
2020-07-19 19:38:23 +00:00
|
|
|
if (!(hp = gethostbyname(hostname)))
|
|
|
|
{
|
|
|
|
printf("Couldn't retrieve humax IP address.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
memmove((char *)&saddr.s_addr, (char *)hp->h_addr,
|
|
|
|
sizeof(saddr.s_addr));
|
|
|
|
printf("Hostname: %s (%s)\n", hostname, inet_ntoa(saddr));
|
2013-01-17 15:24:10 +00:00
|
|
|
|
2020-07-19 19:38:23 +00:00
|
|
|
struct mdnsd *svr = mdnsd_start();
|
|
|
|
if (svr == NULL) {
|
|
|
|
printf("mdnsd_start() error\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
printf("Started MDNS Service\n");
|
2013-01-17 15:24:10 +00:00
|
|
|
|
2020-07-19 19:38:23 +00:00
|
|
|
mdnsd_set_hostname(svr, hostname, saddr.s_addr);
|
2012-12-21 17:02:50 +00:00
|
|
|
|
2020-07-19 19:38:23 +00:00
|
|
|
sprintf(ifname, "Humax Fox T2 (%s) Web Interface", hostname);
|
2012-12-21 17:02:50 +00:00
|
|
|
|
2011-04-10 13:51:52 +00:00
|
|
|
const char *txt[] = {
|
2020-07-19 19:38:23 +00:00
|
|
|
"path=/",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
struct mdns_service *svc = mdnsd_register_svc(
|
|
|
|
svr, ifname, "_http._tcp.local", 80,
|
|
|
|
NULL, txt);
|
|
|
|
//mdns_service_destroy(svc);
|
2011-04-10 13:51:52 +00:00
|
|
|
|
2020-07-19 19:38:23 +00:00
|
|
|
printf("Registered name.\n");
|
2011-04-10 13:51:52 +00:00
|
|
|
|
2020-07-19 19:38:23 +00:00
|
|
|
for (;;)
|
|
|
|
sleep(3600);
|
|
|
|
|
|
|
|
// mdnsd_stop(svr);
|
2011-04-10 13:51:52 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|