/* upnpd project * * * upnpd device * * This file is part of upnpd. * * * Portions of the code from the MiniUPnP project: * * Copyright (c) 2006-2007, Thomas Bernard * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 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. * * 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 COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT OWNER OR CONTRIBUTORS 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. */ #include #include #define INOTIFY_MASK 0x0001 #include "config.h" #include "upnpglobalvars.h" #include #include "upnpdescstrings.h" #include "upnpdtypes.h" #include #include #define SYSUPTIMEMASK 0x0002 /* startup time */ time_t startup_time = 0; struct runtime_vars_s runtime_vars; int runtime_flags = INOTIFY_MASK; char uuidvalue[] = "uuid:2234ce-28ad-4977-95b2-b514e343ff21"; /*modelname to be renamed*/ char modelnumber[MODELNUMBER_MAX_LEN] = "1"; char serialnumber[SERIALNUMBER_MAX_LEN] = "00000000"; char modelname[] = "upnpd"; /* presentation url : * http://nnn.nnn.nnn.nnn:ppppp/ => max 30 bytes including terminating 0 */ char presentationurl[PRESENTATIONURL_MAX_LEN]; int n_lan_addr = 0; struct lan_addr_s lan_addr[MAX_LAN_ADDR]; char friendly_name[FRIENDLYNAME_MAX_LEN] = "upnpd"; char log_path[PATH_MAX] = { '\0' }; //struct client_cache_s clients[CLIENT_CACHE_SLOTS]; volatile short int quitting = 0; volatile uint32_t updateID = 0; const char *pidfilename = "/var/run/upnpdpid";