├── .gitignore ├── ChangeLog ├── LICENSE.txt ├── Makefile ├── README ├── THIRDPARTYLICENSE.txt ├── docs ├── BUILDING ├── BUILDING_Debian └── BUILDING_Solaris10x86 ├── make ├── Makefile ├── base.mk ├── defines_COMMON.mk ├── defines_JAVA.mk ├── defines_Linux.mk ├── defines_Linux_debian.mk ├── defines_Linux_debian_6_i686_32.mk ├── defines_Linux_debian_7_x86_64.mk ├── defines_Linux_redhat.mk ├── defines_SOLARIS.mk ├── defines_SunOS.mk ├── defines_SunOS_OpenIndiana_5.11_i86pc.mk ├── defines_SunOS_Sun_5.10.mk ├── defines_SunOS_Sun_5.10_i86pc.mk ├── defines_SunOS_Sun_5.10_sun4u.mk ├── defines_SunOS_Sun_5.10_sun4v.mk ├── defines_UNIX.mk ├── defines_WebServer.mk ├── pinfo ├── rules.mk ├── rules_COMMON.mk ├── rules_JAVA_JDK_1.5.mk ├── rules_Linux.mk └── rules_SunOS.mk ├── sbc ├── Makefile ├── README ├── ldapsdk │ ├── Makefile.linux │ ├── Makefile.redhat │ └── Makefile.solaris ├── pcre │ └── Makefile.solaris ├── xalan-c │ ├── Makefile.redhat │ ├── Makefile.solaris │ └── patches │ │ ├── Makefile.incl.in.patch │ │ └── runConfigure.patch └── xerces-c │ ├── Makefile.redhat │ ├── Makefile.solaris │ └── patches │ ├── Makefile.incl.patch │ └── runConfigure.patch ├── schema └── heliod-web-server_1_0.xsd ├── src ├── Makefile ├── genProductConstants.pl ├── java │ ├── Makefile │ ├── build.xml │ └── com │ │ └── sun │ │ └── webserver │ │ └── xsd2cpp │ │ ├── SchemaUtil.java │ │ └── XSD2Cpp.java ├── sbc │ └── Makefile ├── server │ ├── Makefile │ ├── base │ │ ├── LibMgr.cpp │ │ ├── LibMgr.hpp │ │ ├── Makefile │ │ ├── SemPool.cpp │ │ ├── SemPool.h │ │ ├── arcfour.cpp │ │ ├── arcfour.h │ │ ├── baseobjs.mk │ │ ├── buffer.cpp │ │ ├── buffer.h │ │ ├── cache.cpp │ │ ├── cache.h │ │ ├── cinfo.cpp │ │ ├── cinfo.h │ │ ├── crit.cpp │ │ ├── crit.h │ │ ├── daemon.cpp │ │ ├── daemon.h │ │ ├── date.cpp │ │ ├── date.h │ │ ├── dbtbase.h │ │ ├── dll.cpp │ │ ├── dll.h │ │ ├── dns.cpp │ │ ├── dns_cache.cpp │ │ ├── dns_cache.h │ │ ├── dnsdmain.cpp │ │ ├── ereport.cpp │ │ ├── ereport.h │ │ ├── eventhandler.cpp │ │ ├── eventhandler.h │ │ ├── eventlog.cpp │ │ ├── eventlog.h │ │ ├── file.cpp │ │ ├── file.h │ │ ├── keyword.cpp │ │ ├── keyword.h │ │ ├── keyword_pvt.h │ │ ├── language.cpp │ │ ├── language.h │ │ ├── lexer.cpp │ │ ├── lexer.h │ │ ├── lexer_pvt.h │ │ ├── libbase.spec │ │ ├── libbase.versions │ │ ├── loadavg.cpp │ │ ├── loadavg.h │ │ ├── minissl.h │ │ ├── net.cpp │ │ ├── net.h │ │ ├── netbuf.cpp │ │ ├── netio.h │ │ ├── netlayer.cpp │ │ ├── nsassert.h │ │ ├── nscperror.c │ │ ├── nscperror.h │ │ ├── nterrors.h │ │ ├── ntgenerr.cpp │ │ ├── ntpipe.cpp │ │ ├── ntservermessage.cpp │ │ ├── ntservermessage.h │ │ ├── objndx.cpp │ │ ├── objndx.h │ │ ├── params.cpp │ │ ├── params.h │ │ ├── pathnames.cpp │ │ ├── pathnames.h │ │ ├── pblock.cpp │ │ ├── pblock.h │ │ ├── platform.cpp │ │ ├── platform.h │ │ ├── plist.cpp │ │ ├── plist.h │ │ ├── plist_pvt.h │ │ ├── pool.cpp │ │ ├── pool.h │ │ ├── pool_pvt.h │ │ ├── qvalue.cpp │ │ ├── regexp.cpp │ │ ├── regexp.h │ │ ├── restart.cpp │ │ ├── rwlock.cpp │ │ ├── rwlock.h │ │ ├── sem.cpp │ │ ├── sem.h │ │ ├── servnss.cpp │ │ ├── servnss.h │ │ ├── servssl.c │ │ ├── session.cpp │ │ ├── session.h │ │ ├── shexp.cpp │ │ ├── shexp.h │ │ ├── shmem.cpp │ │ ├── shmem.h │ │ ├── sslconf.cpp │ │ ├── sslconf.h │ │ ├── strtok.cpp │ │ ├── system.cpp │ │ ├── systems.h │ │ ├── systhr.cpp │ │ ├── systhr.h │ │ ├── unix_utils.cpp │ │ ├── unix_utils.h │ │ ├── uri.cpp │ │ ├── url64.cpp │ │ ├── url64.h │ │ ├── util.cpp │ │ ├── util.h │ │ ├── util_rng.cpp │ │ ├── uuencode.cpp │ │ ├── uuid.cpp │ │ ├── uuid.h │ │ ├── vs.cpp │ │ ├── vs.h │ │ ├── wdservermessage.cpp │ │ └── wdservermessage.h │ ├── extras │ │ ├── Makefile │ │ └── binlog │ │ │ ├── Makefile │ │ │ └── binlog.cpp │ ├── frame │ │ ├── ErrMessages.h │ │ ├── Makefile │ │ ├── accel.cpp │ │ ├── accel.h │ │ ├── acl.h │ │ ├── aclframe.cpp │ │ ├── aclinit.h │ │ ├── args.cpp │ │ ├── args.h │ │ ├── args_pvt.h │ │ ├── clauth.h │ │ ├── cmstat.cpp │ │ ├── cmstat.h │ │ ├── conf.cpp │ │ ├── conf.h │ │ ├── conf_api.cpp │ │ ├── conf_api.h │ │ ├── conf_init.cpp │ │ ├── conf_init.h │ │ ├── cookie.cpp │ │ ├── cookie.h │ │ ├── dbtframe.h │ │ ├── dnfilter.cpp │ │ ├── dnfilter.h │ │ ├── domain.cpp │ │ ├── domain.h │ │ ├── error.cpp │ │ ├── error.h │ │ ├── expr.cpp │ │ ├── expr.h │ │ ├── expr.tab.cpp │ │ ├── expr.tab.cpp.sed │ │ ├── expr.tab.h │ │ ├── expr.tab.h.sed │ │ ├── expr.y │ │ ├── expr_parse.h │ │ ├── expr_pvt.h │ │ ├── expr_yy.h │ │ ├── filter.cpp │ │ ├── filter.h │ │ ├── filter_pvt.h │ │ ├── frameobjs.mk │ │ ├── func.cpp │ │ ├── func.h │ │ ├── http.cpp │ │ ├── http.h │ │ ├── http_ext.h │ │ ├── httpact.cpp │ │ ├── httpact.h │ │ ├── httpd-fn.cpp │ │ ├── httpdir.cpp │ │ ├── httpdir.h │ │ ├── httpfilter.cpp │ │ ├── httpfilter.h │ │ ├── ipfilter.cpp │ │ ├── ipfilter.h │ │ ├── log.cpp │ │ ├── log.h │ │ ├── model.cpp │ │ ├── model.h │ │ ├── model_pvt.h │ │ ├── nsapi30.cpp │ │ ├── nsapi_accessors.cpp │ │ ├── nsapi_accessors.h │ │ ├── object.cpp │ │ ├── object.h │ │ ├── objset.cpp │ │ ├── objset.h │ │ ├── otype_helper.cpp │ │ ├── otype_helper.h │ │ ├── outputvector.h │ │ ├── protocol.h │ │ ├── redirect.h │ │ ├── req.cpp │ │ ├── req.h │ │ ├── result.cpp │ │ ├── result.h │ │ ├── result_pvt.h │ │ ├── servact.h │ │ ├── tokenizer.cpp │ │ └── tokenizer.h │ ├── httpdaemon │ │ ├── AuthDb.cpp │ │ ├── AuthDb.h │ │ ├── ChildAdminThread.cpp │ │ ├── ChildAdminThread.h │ │ ├── HttpMethodRegistry.cpp │ │ ├── HttpMethodRegistry.h │ │ ├── JavaConfig.cpp │ │ ├── JavaConfig.h │ │ ├── ListenSocket.cpp │ │ ├── ListenSocket.h │ │ ├── ListenSocketConfig.cpp │ │ ├── ListenSocketConfig.h │ │ ├── ListenSocketConfigHash.cpp │ │ ├── ListenSocketConfigHash.h │ │ ├── ListenSockets.cpp │ │ ├── ListenSockets.h │ │ ├── Makefile │ │ ├── NTStatsServer.cpp │ │ ├── NTStatsServer.h │ │ ├── OptionsConfig.cpp │ │ ├── ParentAdmin.cpp │ │ ├── ParentAdmin.h │ │ ├── ParentStats.cpp │ │ ├── ParentStats.h │ │ ├── StatsClient.cpp │ │ ├── StatsClient.h │ │ ├── StatsMsgHandler.cpp │ │ ├── StatsMsgHandler.h │ │ ├── StatsMsgPreparer.cpp │ │ ├── StatsMsgPreparer.h │ │ ├── UnixSignals.cpp │ │ ├── UnixSignals.h │ │ ├── WatchdogClient.cpp │ │ ├── WatchdogClient.h │ │ ├── WebServer.cpp │ │ ├── WebServer.h │ │ ├── acceptconn.cpp │ │ ├── acceptconn.h │ │ ├── configuration.cpp │ │ ├── configuration.h │ │ ├── configurationmanager.cpp │ │ ├── configurationmanager.h │ │ ├── connqueue.cpp │ │ ├── connqueue.h │ │ ├── daemonobjs.mk │ │ ├── daemonsession.cpp │ │ ├── daemonsession.h │ │ ├── dbthttpdaemon.h │ │ ├── fileutility.cpp │ │ ├── fileutility.h │ │ ├── hpuxkernelstats.cpp │ │ ├── hpuxkernelstats.h │ │ ├── hpuxprocessstats.cpp │ │ ├── hpuxprocessstats.h │ │ ├── httpdaemon.h │ │ ├── httpheader.cpp │ │ ├── httpheader.h │ │ ├── httprequest.cpp │ │ ├── httprequest.h │ │ ├── internalstats.h │ │ ├── javastatsmanageritf.h │ │ ├── kapollthr.cpp │ │ ├── kapollthr.h │ │ ├── kernelstatsbase.h │ │ ├── libdaemon.h │ │ ├── linuxkernelstats.cpp │ │ ├── linuxkernelstats.h │ │ ├── linuxprocessstats.cpp │ │ ├── linuxprocessstats.h │ │ ├── logmanager.cpp │ │ ├── logmanager.h │ │ ├── lognsprdescriptor.cpp │ │ ├── lognsprdescriptor.h │ │ ├── lsmanager.h │ │ ├── mime.cpp │ │ ├── mime.h │ │ ├── nsprpolladapter.h │ │ ├── ntmagnus.cpp │ │ ├── nvpairs.cpp │ │ ├── nvpairs.h │ │ ├── polladapter.h │ │ ├── pollarray.cpp │ │ ├── pollarray.h │ │ ├── pollmanager.cpp │ │ ├── pollmanager.h │ │ ├── processstatsbase.h │ │ ├── scheduler.cpp │ │ ├── scheduler.h │ │ ├── servername.cpp │ │ ├── servername.h │ │ ├── smartheapinit.cpp │ │ ├── smartheapinit.h │ │ ├── solariskernelstats.cpp │ │ ├── solariskernelstats.h │ │ ├── solarisprocessstats.cpp │ │ ├── solarisprocessstats.h │ │ ├── statsavg.cpp │ │ ├── statsavg.h │ │ ├── statsbkupmgr.cpp │ │ ├── statsbkupmgr.h │ │ ├── statsmanager.cpp │ │ ├── statsmanager.h │ │ ├── statsmessage.cpp │ │ ├── statsmessage.h │ │ ├── statsnodes.cpp │ │ ├── statsnodes.h │ │ ├── statssession.cpp │ │ ├── statssession.h │ │ ├── statsutil.cpp │ │ ├── statsutil.h │ │ ├── stdhandles.cpp │ │ ├── stdhandles.h │ │ ├── throttling.cpp │ │ ├── throttling.h │ │ ├── updatecrl.cpp │ │ ├── updatecrl.h │ │ ├── uxpolladapter.cpp │ │ ├── uxpolladapter.h │ │ ├── vsconf.cpp │ │ ├── vsconf.h │ │ ├── vsmanager.cpp │ │ └── vsmanager.h │ ├── httpparser │ │ ├── Makefile │ │ ├── httpparser.cpp │ │ └── httpparser.h │ ├── i18n.h │ ├── ldaputil │ │ ├── LdapDNList.cpp │ │ ├── LdapDNList.h │ │ ├── LdapEntry.cpp │ │ ├── LdapEntry.h │ │ ├── LdapOps.cpp │ │ ├── LdapSearchResult.cpp │ │ ├── LdapSearchResult.h │ │ ├── LdapServerSet.cpp │ │ ├── LdapServerSet.h │ │ ├── LdapSession.cpp │ │ ├── LdapSession.h │ │ ├── LdapSessionCommon.h │ │ ├── LdapSessionPool.cpp │ │ ├── LdapSessionPool.h │ │ ├── LdapSessionTest.cpp │ │ ├── LdapValues.cpp │ │ ├── LdapValues.h │ │ ├── LinkedList.cpp │ │ ├── LinkedList.hh │ │ ├── Makefile │ │ ├── cert.cpp │ │ ├── certmap.conf │ │ ├── certmap.cpp │ │ ├── certmap.h │ │ ├── dbconf.cpp │ │ ├── dbconf.h │ │ ├── dbtldaputil.h │ │ ├── errors.cpp │ │ ├── errors.h │ │ ├── extcmap.h │ │ ├── ldaputil.cpp │ │ ├── ldaputil.h │ │ ├── ldaputili.h │ │ ├── ldaputilobjs.mk │ │ ├── list.h │ │ └── vtable.cpp │ ├── libaccess │ │ ├── FileRealm.cpp │ │ ├── FileRealm.h │ │ ├── FileRealmUser.cpp │ │ ├── FileRealmUser.h │ │ ├── LdapRealm.cpp │ │ ├── LdapRealm.h │ │ ├── Makefile │ │ ├── WSRealm.cpp │ │ ├── WSRealm.h │ │ ├── accessobjs.mk │ │ ├── acl.h │ │ ├── acl.tab.cpp │ │ ├── acl.tab.h │ │ ├── acl.yy.cpp │ │ ├── aclacl.cpp │ │ ├── aclcache.cpp │ │ ├── aclcache.h │ │ ├── acldb.cpp │ │ ├── acldbtype.cpp │ │ ├── aclerror.cpp │ │ ├── aclerror.h │ │ ├── aclexpr.cpp │ │ ├── aclflush.cpp │ │ ├── aclgetattr.cpp │ │ ├── aclglobal.h │ │ ├── aclinit.cpp │ │ ├── acllas.cpp │ │ ├── acllist.cpp │ │ ├── aclmethod.cpp │ │ ├── aclpath.cpp │ │ ├── aclpriv.h │ │ ├── aclproto.h │ │ ├── aclscan.h │ │ ├── aclscan.l │ │ ├── aclspace.cpp │ │ ├── acltext.y │ │ ├── acltools.cpp │ │ ├── aclutil.cpp │ │ ├── cryptwrapper.cpp │ │ ├── cryptwrapper.h │ │ ├── dacl.cpp │ │ ├── dacl.h │ │ ├── dbtlibaccess.h │ │ ├── digest.cpp │ │ ├── digest.h │ │ ├── fileacl.cpp │ │ ├── fileacl.h │ │ ├── genacl.cpp │ │ ├── genacl.h │ │ ├── gssapi.cpp │ │ ├── gssapi.h │ │ ├── lascipher.cpp │ │ ├── lasdns.cpp │ │ ├── lasgroup.cpp │ │ ├── lasip.cpp │ │ ├── lasowner.cpp │ │ ├── lasrole.cpp │ │ ├── lasssl.cpp │ │ ├── lastod.cpp │ │ ├── lasuser.cpp │ │ ├── ldapacl.cpp │ │ ├── ldapacl.h │ │ ├── nativeauth.cpp │ │ ├── nsauth.h │ │ ├── nseframe.cpp │ │ ├── nserror.h │ │ ├── nullacl.cpp │ │ ├── nullacl.h │ │ ├── oneeval.cpp │ │ ├── pamacl.cpp │ │ ├── pamacl.h │ │ ├── pamauth.c │ │ ├── pamauth.h │ │ ├── parse.h │ │ ├── symbols.cpp │ │ ├── symbols.h │ │ ├── usrcache.cpp │ │ ├── usrcache.h │ │ └── yy-sed │ ├── libadmin │ │ ├── Makefile │ │ ├── adminobjs.mk │ │ ├── admserv.cpp │ │ ├── code.cpp │ │ ├── cron_conf.cpp │ │ ├── cronutil.h │ │ ├── get_file_paths.cpp │ │ ├── get_file_paths.h │ │ ├── httpcode.h │ │ ├── libadmin.h │ │ ├── password.cpp │ │ ├── pw.h │ │ ├── resource.h │ │ ├── resource_icu.c │ │ └── strlist.cpp │ ├── libcrypt │ │ ├── Makefile │ │ └── crypt.c │ ├── libdrcache │ │ ├── Makefile │ │ ├── drcache.cpp │ │ ├── drcache.h │ │ ├── drcacheobjs.mk │ │ └── drnsapi.cpp │ ├── libmessages │ │ ├── Makefile │ │ ├── messages.c │ │ └── messages.mc │ ├── libproxy │ │ ├── Makefile │ │ ├── channel.cpp │ │ ├── channel.h │ │ ├── dbtlibproxy.h │ │ ├── host_dns_cache.cpp │ │ ├── host_dns_cache.h │ │ ├── httpclient.cpp │ │ ├── httpclient.h │ │ ├── proxyerror.cpp │ │ ├── proxyerror.h │ │ ├── proxyobjs.mk │ │ ├── putils.cpp │ │ ├── reverse.cpp │ │ ├── reverse.h │ │ ├── route.cpp │ │ ├── route.h │ │ ├── stuff.cpp │ │ ├── stuff.h │ │ ├── url.cpp │ │ ├── url.h │ │ └── util.h │ ├── libsed │ │ ├── Makefile │ │ ├── dbtlibsed.h │ │ ├── libsed.h │ │ ├── regexp.c │ │ ├── regexp.h │ │ ├── sed.h │ │ ├── sed0.c │ │ └── sed1.c │ ├── libserverxml │ │ ├── Makefile │ │ ├── NSPRInputSource.cpp │ │ ├── NSPRInputSource.h │ │ ├── ServerXML.cpp │ │ ├── ServerXML.h │ │ ├── ServerXMLException.h │ │ ├── ServerXMLExceptionContext.cpp │ │ ├── ServerXMLExceptionContext.h │ │ ├── ServerXMLParser.cpp │ │ ├── ServerXMLParser.h │ │ ├── dbtlibserverxml.h │ │ └── makefile.XSD2Cpp │ ├── libsi18n │ │ ├── Makefile │ │ ├── dblink.c │ │ ├── getlang.cpp │ │ ├── getstrdb.cpp │ │ ├── getstrmem.cpp │ │ ├── gshttpd.h │ │ ├── langpath.cpp │ │ ├── liblibsi18n.spec │ │ ├── liblibsi18n.versions │ │ ├── makefile.step2 │ │ ├── makstrdb.c │ │ ├── parselang.cpp │ │ ├── webserv_msg_de.txt │ │ ├── webserv_msg_en.txt │ │ ├── webserv_msg_es.txt │ │ ├── webserv_msg_fr.txt │ │ ├── webserv_msg_ja.txt │ │ ├── webserv_msg_ko.txt │ │ ├── webserv_msg_zh_cn.txt │ │ └── webserv_msg_zh_tw.txt │ ├── netsite.h │ ├── plugins │ │ ├── Makefile │ │ ├── fastcgi │ │ │ ├── Makefile │ │ │ ├── Makefile.fastcgistub │ │ │ ├── baserole.cpp │ │ │ ├── circularbuffer.h │ │ │ ├── constants.h │ │ │ ├── dbtfastcgi.h │ │ │ ├── endpoint.h │ │ │ ├── errortypes.cpp │ │ │ ├── errortypes.h │ │ │ ├── fastcgi.h │ │ │ ├── fastcgii18n.cpp │ │ │ ├── fastcgii18n.h │ │ │ ├── fastcgistub.cpp │ │ │ ├── fastcgistub.h │ │ │ ├── fcgiparser.cpp │ │ │ ├── fcgiparser.h │ │ │ ├── fcgiprocess.cpp │ │ │ ├── fcgiprocess.h │ │ │ ├── fcgirequest.cpp │ │ │ ├── fcgirequest.h │ │ │ ├── fcgirole.cpp │ │ │ ├── fcgirole.h │ │ │ ├── libfastcgi.spec │ │ │ ├── libfastcgi.versions │ │ │ ├── nsapifastcgi.cpp │ │ │ ├── nsapifastcgi.h │ │ │ ├── server.cpp │ │ │ ├── server.h │ │ │ ├── serverchannel.cpp │ │ │ ├── serverchannel.h │ │ │ ├── serverconfig.cpp │ │ │ ├── serverconfig.h │ │ │ ├── servermanager.cpp │ │ │ ├── servermanager.h │ │ │ ├── stubexec.cpp │ │ │ ├── stubexec.h │ │ │ ├── util.cpp │ │ │ └── util.h │ │ ├── htaccess │ │ │ ├── Makefile │ │ │ ├── htaccess.h │ │ │ ├── htaccess.spec │ │ │ ├── htaccess.versions │ │ │ ├── htpasswd.c │ │ │ ├── htpasswd.txt │ │ │ ├── http_access.cpp │ │ │ ├── http_auth.cpp │ │ │ ├── http_config.cpp │ │ │ ├── http_register.cpp │ │ │ ├── httpd.h │ │ │ ├── list.cpp │ │ │ ├── main.cpp │ │ │ └── util.cpp │ │ ├── java │ │ │ ├── HashUtil.cpp │ │ │ ├── HashUtil.h │ │ │ ├── JVMControl.cpp │ │ │ ├── JVMControl.h │ │ │ ├── JavaStatsManager.cpp │ │ │ ├── JavaStatsManager.h │ │ │ ├── LockManager.cpp │ │ │ ├── LockManager.h │ │ │ ├── MMapSession.cpp │ │ │ ├── MMapSessionManager.cpp │ │ │ ├── Makefile │ │ │ ├── MemMapFile.cpp │ │ │ ├── MemMapFile.h │ │ │ ├── MemMapSessionManager.cpp │ │ │ ├── MemMapSessionManager.h │ │ │ ├── NSAPIConnector.cpp │ │ │ ├── NSAPIConnector.h │ │ │ ├── NSAPIRunner.cpp │ │ │ ├── NSAPIRunner.h │ │ │ ├── NSAPIVirtualServer.cpp │ │ │ ├── NSAPIVirtualServer.h │ │ │ ├── NSJavaI18N.cpp │ │ │ ├── NSJavaI18N.h │ │ │ ├── NSJavaUtil.cpp │ │ │ ├── NSJavaUtil.h │ │ │ ├── NssStore.cpp │ │ │ ├── Pkcs12Util.cpp │ │ │ ├── Pkcs12Util.h │ │ │ ├── ServletResource.cpp │ │ │ ├── ServletResource.h │ │ │ ├── WebModule.cpp │ │ │ ├── WebModule.h │ │ │ ├── j2ee.cpp │ │ │ ├── j2eefilter.cpp │ │ │ ├── j2eefilter.h │ │ │ ├── j2eeplugin.properties │ │ │ ├── jvm.c │ │ │ ├── libj2eeplugin.spec │ │ │ ├── libj2eeplugin.versions │ │ │ ├── libjvm.spec │ │ │ └── libjvm.versions │ │ └── shtml │ │ │ ├── Makefile │ │ │ ├── libShtml.spec │ │ │ └── libShtml.versions │ ├── public │ │ ├── Makefile │ │ ├── base │ │ │ ├── Makefile │ │ │ ├── buffer.h │ │ │ ├── cinfo.h │ │ │ ├── crit.h │ │ │ ├── daemon.h │ │ │ ├── ereport.h │ │ │ ├── file.h │ │ │ ├── net.h │ │ │ ├── pblock.h │ │ │ ├── pool.h │ │ │ ├── regexp.h │ │ │ ├── sem.h │ │ │ ├── session.h │ │ │ ├── shexp.h │ │ │ ├── shmem.h │ │ │ ├── systems.h │ │ │ ├── systhr.h │ │ │ └── util.h │ │ ├── drnsapi.h │ │ ├── frame │ │ │ ├── Makefile │ │ │ ├── conf.h │ │ │ ├── func.h │ │ │ ├── http.h │ │ │ ├── log.h │ │ │ ├── object.h │ │ │ ├── objset.h │ │ │ ├── protocol.h │ │ │ └── req.h │ │ ├── iwsstats.h │ │ ├── netsite.h │ │ ├── nsacl │ │ │ ├── Makefile │ │ │ ├── aclapi.h │ │ │ ├── acldef.h │ │ │ ├── nserrdef.h │ │ │ └── plistdef.h │ │ ├── nsapi.h │ │ └── shtml │ │ │ ├── Makefile │ │ │ └── shtml_public.h │ ├── safs │ │ ├── CExecReqPipe.cpp │ │ ├── CExecReqPipe.h │ │ ├── Cgistub.c │ │ ├── Cgistub.h │ │ ├── ChildExec.cpp │ │ ├── ChildExec.h │ │ ├── Makefile │ │ ├── Makefile.cgistub │ │ ├── acl.h │ │ ├── aclinit.h │ │ ├── aclsafs.cpp │ │ ├── addlog.cpp │ │ ├── addlog.h │ │ ├── auth.cpp │ │ ├── auth.h │ │ ├── cgi.cpp │ │ ├── cgi.h │ │ ├── child.cpp │ │ ├── child.h │ │ ├── clauth.cpp │ │ ├── clauth.h │ │ ├── cond.cpp │ │ ├── cond.h │ │ ├── control.cpp │ │ ├── control.h │ │ ├── dbtsafs.h │ │ ├── debug.cpp │ │ ├── debug.h │ │ ├── deprecated.cpp │ │ ├── deprecated.h │ │ ├── digest.cpp │ │ ├── digest.h │ │ ├── dl.cpp │ │ ├── dl.h │ │ ├── dump.cpp │ │ ├── dump.h │ │ ├── errorbong.cpp │ │ ├── errorbong.h │ │ ├── favicon.cpp │ │ ├── favicon.h │ │ ├── filtersafs.cpp │ │ ├── filtersafs.h │ │ ├── flexlog.cpp │ │ ├── flexlog.h │ │ ├── flexlogcommon.h │ │ ├── headerfooter.cpp │ │ ├── headerfooter.h │ │ ├── httpcompression.cpp │ │ ├── httpcompression.h │ │ ├── index.cpp │ │ ├── index.h │ │ ├── init.cpp │ │ ├── init.h │ │ ├── init_fn.cpp │ │ ├── init_fn.h │ │ ├── logsafs.cpp │ │ ├── logsafs.h │ │ ├── nsapicachesaf.cpp │ │ ├── nsapicachesaf.h │ │ ├── nsconfig.c │ │ ├── nsfcsafs.cpp │ │ ├── nsfcsafs.h │ │ ├── nstpsafs.cpp │ │ ├── nstpsafs.h │ │ ├── ntconsafs.cpp │ │ ├── ntconsafs.h │ │ ├── ntrans.cpp │ │ ├── ntrans.h │ │ ├── ntwincgi.cpp │ │ ├── otype.cpp │ │ ├── otype.h │ │ ├── pcheck.cpp │ │ ├── pcheck.h │ │ ├── perf.cpp │ │ ├── perf.h │ │ ├── poolsafs.cpp │ │ ├── poolsafs.h │ │ ├── preencrypted.cpp │ │ ├── preencrypted.h │ │ ├── qos.cpp │ │ ├── qos.h │ │ ├── reconfig.cpp │ │ ├── reconfig.h │ │ ├── reqlimit.cpp │ │ ├── reqlimit.h │ │ ├── safsobjs.mk │ │ ├── sed.cpp │ │ ├── sed.h │ │ ├── service.cpp │ │ ├── service.h │ │ ├── trace.cpp │ │ ├── trace.h │ │ ├── upload.cpp │ │ ├── upload.h │ │ ├── var.cpp │ │ └── var.h │ ├── shtml │ │ ├── ConfigHandler.cpp │ │ ├── ConfigHandler.h │ │ ├── DefineHandler.h │ │ ├── EchoHandler.cpp │ │ ├── EchoHandler.h │ │ ├── ExecHandler.cpp │ │ ├── ExecHandler.h │ │ ├── FileInfoHandler.cpp │ │ ├── FileInfoHandler.h │ │ ├── HeaderHandler.h │ │ ├── IncludeHandler.cpp │ │ ├── IncludeHandler.h │ │ ├── Makefile │ │ ├── NSBaseTagHandler.cpp │ │ ├── NSBaseTagHandler.h │ │ ├── NSPageState.cpp │ │ ├── NSPageState.h │ │ ├── NSTagHandlers.cpp │ │ ├── NSTagHandlers.h │ │ ├── OutputBuff.h │ │ ├── PrintenvHandler.cpp │ │ ├── PrintenvHandler.h │ │ ├── RedirectHandler.h │ │ ├── ServletHandler.cpp │ │ ├── ServletHandler.h │ │ ├── ShtmlCache.cpp │ │ ├── ShtmlCache.h │ │ ├── ShtmlConfig.cpp │ │ ├── ShtmlConfig.h │ │ ├── ShtmlDefines.h │ │ ├── ShtmlElement.h │ │ ├── ShtmlElementList.cpp │ │ ├── ShtmlElementList.h │ │ ├── ShtmlHelperFuncs.cpp │ │ ├── ShtmlHelperFuncs.h │ │ ├── ShtmlPage.cpp │ │ ├── ShtmlPage.h │ │ ├── ShtmlPageFnList.h │ │ ├── ShtmlPlugin.cpp │ │ ├── ShtmlRedirectElement.h │ │ ├── ShtmlSaf.cpp │ │ ├── ShtmlSaf.h │ │ ├── ShtmlTagParser.cpp │ │ ├── ShtmlTagParser.h │ │ ├── ShtmlTagRegistry.cpp │ │ ├── ShtmlTagRegistry.h │ │ ├── TextHandler.cpp │ │ ├── TextHandler.h │ │ ├── dbtShtml.h │ │ └── shtmlobjs.mk │ ├── utils │ │ ├── Makefile │ │ ├── ServerControl.cpp │ │ ├── ServerControl.h │ │ ├── ServerControlCLI.cpp │ │ ├── ServerControlHelper.cpp │ │ ├── ServerControlHelper.h │ │ ├── UnixServerControl.cpp │ │ ├── UnixServerControl.h │ │ ├── filedb.cpp │ │ ├── makefile.set2 │ │ ├── parsexml.cpp │ │ └── true │ │ │ ├── Makefile │ │ │ └── true.c │ ├── uxwdog │ │ ├── Makefile │ │ ├── watchdog.cpp │ │ ├── wdbind.c │ │ ├── wdbind.h │ │ ├── wdconf.cpp │ │ ├── wdconf.h │ │ ├── wdlog.cpp │ │ ├── wdlog.h │ │ ├── wdlsmgr.cpp │ │ ├── wdlsmgr.h │ │ ├── wdpwd.cpp │ │ ├── wdreq.cpp │ │ ├── wdsignals.cpp │ │ ├── wdsignals.h │ │ ├── wdsmf.cpp │ │ ├── wdsmf.h │ │ ├── wdutil.cpp │ │ └── wdutil.h │ └── webservd │ │ ├── Makefile │ │ ├── dbthttpdsrc.h │ │ ├── key.ico │ │ ├── libns-httpd40.spec │ │ ├── libns-httpd40.versions │ │ ├── main.cpp │ │ ├── nsapi30_dll.cpp │ │ ├── nsapi35_dll.cpp │ │ ├── nsapi36_dll.cpp │ │ ├── ntmain.cpp │ │ ├── password.rc │ │ ├── resource.h │ │ └── smartheapdummy.cpp ├── support │ ├── Cld │ │ ├── Makefile │ │ ├── libCld.c │ │ ├── libCld.spec │ │ └── libCld.versions │ ├── Makefile │ ├── NsprWrap │ │ ├── ConditionVar.h │ │ ├── CriticalSection.h │ │ ├── IntervalTimer.cpp │ │ ├── IntervalTimer.h │ │ ├── LongLong.cpp │ │ ├── LongLong.h │ │ ├── Makefile │ │ ├── NsprBuffer.cpp │ │ ├── NsprBuffer.h │ │ ├── NsprDescriptor.cpp │ │ ├── NsprDescriptor.h │ │ ├── NsprError.cpp │ │ ├── NsprError.h │ │ ├── NsprSink.cpp │ │ ├── NsprSink.h │ │ ├── NsprThunk.cpp │ │ ├── NsprThunk.rc │ │ ├── PlcThunk.cpp │ │ ├── PlcThunk.rc │ │ ├── ProcessLock.cpp │ │ ├── ProcessLock.h │ │ ├── ReadWriteLock.cpp │ │ ├── ReadWriteLock.h │ │ ├── Sleeper.cpp │ │ ├── Sleeper.h │ │ ├── Thread.cpp │ │ ├── Thread.h │ │ ├── ThreadSafe.cpp │ │ ├── ThreadSafe.h │ │ ├── atomic.cpp │ │ ├── atomic.h │ │ ├── countingsemaphore.cpp │ │ ├── countingsemaphore.h │ │ ├── libnsprwrap.spec │ │ └── libnsprwrap.versions │ ├── ares │ │ ├── Makefile │ │ ├── README.ipv6 │ │ ├── arapi.cpp │ │ ├── arapi.h │ │ ├── arlib.cpp │ │ ├── arlib.h │ │ ├── dnstest.cpp │ │ ├── libares3.spec │ │ └── libares3.versions │ ├── filecache │ │ ├── Makefile │ │ ├── alloc.cpp │ │ ├── filecopy.cpp │ │ ├── fileio.cpp │ │ ├── filename.cpp │ │ ├── init.cpp │ │ ├── instance.cpp │ │ ├── libnsfc.spec │ │ ├── libnsfc.versions │ │ ├── md_unix.cpp │ │ ├── md_unix.h │ │ ├── md_win32.cpp │ │ ├── md_win32.h │ │ ├── nsfc.h │ │ └── nsfc_pvt.h │ ├── libdbm │ │ ├── Makefile │ │ ├── cdefs.h │ │ ├── db.c │ │ ├── extern.h │ │ ├── h_bigkey.c │ │ ├── h_func.c │ │ ├── h_lock.c │ │ ├── h_log2.c │ │ ├── h_page.c │ │ ├── hash.c │ │ ├── hash.h │ │ ├── hash_buf.c │ │ ├── hash_statistics.h │ │ ├── hsearch.c │ │ ├── hsearch.h │ │ ├── liblibdbm.spec │ │ ├── liblibdbm.versions │ │ ├── makefile.win │ │ ├── mcom_db.h │ │ ├── memmove.c │ │ ├── mktemp.c │ │ ├── mpool.h │ │ ├── ndbm.c │ │ ├── ndbm.h │ │ ├── nsres.c │ │ ├── nsres.h │ │ ├── page.h │ │ ├── queue.h │ │ ├── search.h │ │ ├── snprintf.c │ │ └── strerror.c │ ├── libxsd2cpp │ │ ├── Bool.cpp │ │ ├── Bool.h │ │ ├── CString.cpp │ │ ├── CString.h │ │ ├── Complex.cpp │ │ ├── Complex.h │ │ ├── Element.h │ │ ├── Integer.cpp │ │ ├── Integer.h │ │ ├── IntervalTime.cpp │ │ ├── IntervalTime.h │ │ ├── Makefile │ │ ├── Simple.h │ │ ├── String.cpp │ │ ├── String.h │ │ ├── ValidationException.h │ │ └── libxsd2cpp.h │ ├── support │ │ ├── BaseCache.cpp │ │ ├── BaseCache.h │ │ ├── CacheConfig.cpp │ │ ├── CacheConfig.h │ │ ├── CacheStats.h │ │ ├── DynBuf.cpp │ │ ├── DynBuf.h │ │ ├── EreportableException.cpp │ │ ├── EreportableException.h │ │ ├── GenericList.cpp │ │ ├── GenericList.h │ │ ├── GenericQueue.h │ │ ├── GenericVector.cpp │ │ ├── GenericVector.h │ │ ├── LinkedList.hh │ │ ├── Makefile │ │ ├── NSColString.h │ │ ├── NSString.cpp │ │ ├── NSString.h │ │ ├── NSTokenizer.cpp │ │ ├── NSTokenizer.h │ │ ├── PSQueue.h │ │ ├── PseudoRandomGenerator.cpp │ │ ├── PseudoRandomGenerator.h │ │ ├── SimpleHash.cpp │ │ ├── SimpleHash.h │ │ ├── libsupport.spec │ │ ├── libsupport.versions │ │ ├── nsmalloc.cpp │ │ ├── nsmalloc.h │ │ ├── nspool.cpp │ │ ├── nspool.h │ │ ├── nsshexp.cpp │ │ ├── nsshexp.h │ │ ├── objectlist.h │ │ ├── prime.h │ │ ├── stringvalue.h │ │ ├── support_common.h │ │ ├── urimapper.cpp │ │ ├── urimapper.h │ │ ├── xmloutput.cpp │ │ └── xmloutput.h │ ├── threadpool │ │ ├── Makefile │ │ ├── libnstp.spec │ │ ├── libnstp.versions │ │ ├── nstp.cpp │ │ ├── nstp.h │ │ └── nstp_pvt.h │ ├── time │ │ ├── Makefile │ │ ├── clockthread.cpp │ │ ├── clockthread.h │ │ ├── compare.cpp │ │ ├── libnstime.spec │ │ ├── libnstime.versions │ │ ├── localgmtime.cpp │ │ ├── nstime.cpp │ │ ├── nstime.h │ │ └── xp_time.cpp │ └── xp │ │ ├── Makefile │ │ ├── _xpatomic_gcc.h │ │ ├── _xpatomic_hppa.h │ │ ├── _xpatomic_locked.h │ │ ├── _xpatomic_msvc.h │ │ ├── _xpatomic_omp.h │ │ ├── _xpatomic_pr.h │ │ ├── _xpatomic_sun.h │ │ ├── _xpsynch_pr.h │ │ ├── _xpsynch_sunos.h │ │ ├── amd64 │ │ └── atomic.S │ │ ├── atomic_asm_weak.h │ │ ├── i386 │ │ └── atomic.S │ │ ├── sparc │ │ └── atomic.S │ │ ├── sparcv9 │ │ └── atomic.S │ │ ├── xp.h │ │ ├── xpatomic.cpp │ │ ├── xpatomic.h │ │ ├── xpplatform.h │ │ ├── xpsynch.h │ │ ├── xptests.cpp │ │ ├── xptime.h │ │ ├── xptypes.h │ │ ├── xpunit.cpp │ │ └── xpunit.h └── tools │ ├── Makefile │ ├── bin2c │ ├── Makefile │ └── bin2c.c │ ├── httptest │ ├── Makefile │ ├── basic.cpp │ ├── dynamic.cpp │ ├── dynamicmain.cpp │ ├── engine.cpp │ ├── engine.h │ ├── http.cpp │ ├── http.h │ ├── http11.cpp │ ├── log.cpp │ ├── log.h │ ├── main.cpp │ ├── negative.cpp │ ├── nscperror.cpp │ ├── ptrlist.h │ ├── regex_entry.cpp │ ├── regex_entry.h │ ├── regex_list.cpp │ ├── regex_list.h │ ├── regex_scrubber.cpp │ ├── regex_scrubber.h │ ├── regex_string.cpp │ ├── regex_string.h │ ├── request.cpp │ ├── request.h │ ├── response.cpp │ ├── response.h │ ├── test1.cpp │ ├── tests.cpp │ ├── tests.h │ ├── testthread.h │ ├── utils.cpp │ └── utils.h │ └── txt2c │ ├── Makefile │ └── txt2c.c ├── templates ├── Makefile ├── Makefile.tarball ├── README ├── bin │ ├── reconfig.template │ ├── restart.template │ ├── rotate.template │ ├── startserv.template │ └── stopserv.template ├── config │ ├── certmap.conf.template │ ├── default.acl.template │ ├── keyfile.template │ ├── magnus.conf.template │ ├── mime.types.template │ ├── obj.conf.template │ └── server.xml.template ├── create-instance.template ├── docs │ └── index.html ├── icons │ ├── back.png │ ├── binary.png │ ├── blank.png │ ├── c.png │ ├── image.png │ ├── menu.png │ ├── movie.png │ ├── sound.png │ ├── text.png │ └── unknown.png ├── install-bin │ └── binlog.template ├── lib │ └── wsenv.template ├── post-install └── replace_vars.pl └── test └── Makefile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/README -------------------------------------------------------------------------------- /THIRDPARTYLICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/THIRDPARTYLICENSE.txt -------------------------------------------------------------------------------- /docs/BUILDING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/docs/BUILDING -------------------------------------------------------------------------------- /docs/BUILDING_Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/docs/BUILDING_Debian -------------------------------------------------------------------------------- /docs/BUILDING_Solaris10x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/docs/BUILDING_Solaris10x86 -------------------------------------------------------------------------------- /make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/Makefile -------------------------------------------------------------------------------- /make/base.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/base.mk -------------------------------------------------------------------------------- /make/defines_COMMON.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/defines_COMMON.mk -------------------------------------------------------------------------------- /make/defines_JAVA.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/defines_JAVA.mk -------------------------------------------------------------------------------- /make/defines_Linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/defines_Linux.mk -------------------------------------------------------------------------------- /make/defines_Linux_debian.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/defines_Linux_debian.mk -------------------------------------------------------------------------------- /make/defines_Linux_redhat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/defines_Linux_redhat.mk -------------------------------------------------------------------------------- /make/defines_SOLARIS.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/defines_SOLARIS.mk -------------------------------------------------------------------------------- /make/defines_SunOS.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/defines_SunOS.mk -------------------------------------------------------------------------------- /make/defines_SunOS_Sun_5.10.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/defines_SunOS_Sun_5.10.mk -------------------------------------------------------------------------------- /make/defines_SunOS_Sun_5.10_i86pc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/defines_SunOS_Sun_5.10_i86pc.mk -------------------------------------------------------------------------------- /make/defines_SunOS_Sun_5.10_sun4u.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/defines_SunOS_Sun_5.10_sun4u.mk -------------------------------------------------------------------------------- /make/defines_SunOS_Sun_5.10_sun4v.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/defines_SunOS_Sun_5.10_sun4v.mk -------------------------------------------------------------------------------- /make/defines_UNIX.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/defines_UNIX.mk -------------------------------------------------------------------------------- /make/defines_WebServer.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/defines_WebServer.mk -------------------------------------------------------------------------------- /make/pinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/pinfo -------------------------------------------------------------------------------- /make/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/rules.mk -------------------------------------------------------------------------------- /make/rules_COMMON.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/rules_COMMON.mk -------------------------------------------------------------------------------- /make/rules_JAVA_JDK_1.5.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/rules_JAVA_JDK_1.5.mk -------------------------------------------------------------------------------- /make/rules_Linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/rules_Linux.mk -------------------------------------------------------------------------------- /make/rules_SunOS.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/make/rules_SunOS.mk -------------------------------------------------------------------------------- /sbc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/sbc/Makefile -------------------------------------------------------------------------------- /sbc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/sbc/README -------------------------------------------------------------------------------- /sbc/ldapsdk/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/sbc/ldapsdk/Makefile.linux -------------------------------------------------------------------------------- /sbc/ldapsdk/Makefile.redhat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/sbc/ldapsdk/Makefile.redhat -------------------------------------------------------------------------------- /sbc/ldapsdk/Makefile.solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/sbc/ldapsdk/Makefile.solaris -------------------------------------------------------------------------------- /sbc/pcre/Makefile.solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/sbc/pcre/Makefile.solaris -------------------------------------------------------------------------------- /sbc/xalan-c/Makefile.redhat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/sbc/xalan-c/Makefile.redhat -------------------------------------------------------------------------------- /sbc/xalan-c/Makefile.solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/sbc/xalan-c/Makefile.solaris -------------------------------------------------------------------------------- /sbc/xerces-c/Makefile.redhat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/sbc/xerces-c/Makefile.redhat -------------------------------------------------------------------------------- /sbc/xerces-c/Makefile.solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/sbc/xerces-c/Makefile.solaris -------------------------------------------------------------------------------- /schema/heliod-web-server_1_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/schema/heliod-web-server_1_0.xsd -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/genProductConstants.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/genProductConstants.pl -------------------------------------------------------------------------------- /src/java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/java/Makefile -------------------------------------------------------------------------------- /src/java/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/java/build.xml -------------------------------------------------------------------------------- /src/sbc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/sbc/Makefile -------------------------------------------------------------------------------- /src/server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/Makefile -------------------------------------------------------------------------------- /src/server/base/LibMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/LibMgr.cpp -------------------------------------------------------------------------------- /src/server/base/LibMgr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/LibMgr.hpp -------------------------------------------------------------------------------- /src/server/base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/Makefile -------------------------------------------------------------------------------- /src/server/base/SemPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/SemPool.cpp -------------------------------------------------------------------------------- /src/server/base/SemPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/SemPool.h -------------------------------------------------------------------------------- /src/server/base/arcfour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/arcfour.cpp -------------------------------------------------------------------------------- /src/server/base/arcfour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/arcfour.h -------------------------------------------------------------------------------- /src/server/base/baseobjs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/baseobjs.mk -------------------------------------------------------------------------------- /src/server/base/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/buffer.cpp -------------------------------------------------------------------------------- /src/server/base/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/buffer.h -------------------------------------------------------------------------------- /src/server/base/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/cache.cpp -------------------------------------------------------------------------------- /src/server/base/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/cache.h -------------------------------------------------------------------------------- /src/server/base/cinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/cinfo.cpp -------------------------------------------------------------------------------- /src/server/base/cinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/cinfo.h -------------------------------------------------------------------------------- /src/server/base/crit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/crit.cpp -------------------------------------------------------------------------------- /src/server/base/crit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/crit.h -------------------------------------------------------------------------------- /src/server/base/daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/daemon.cpp -------------------------------------------------------------------------------- /src/server/base/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/daemon.h -------------------------------------------------------------------------------- /src/server/base/date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/date.cpp -------------------------------------------------------------------------------- /src/server/base/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/date.h -------------------------------------------------------------------------------- /src/server/base/dbtbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/dbtbase.h -------------------------------------------------------------------------------- /src/server/base/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/dll.cpp -------------------------------------------------------------------------------- /src/server/base/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/dll.h -------------------------------------------------------------------------------- /src/server/base/dns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/dns.cpp -------------------------------------------------------------------------------- /src/server/base/dns_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/dns_cache.cpp -------------------------------------------------------------------------------- /src/server/base/dns_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/dns_cache.h -------------------------------------------------------------------------------- /src/server/base/dnsdmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/dnsdmain.cpp -------------------------------------------------------------------------------- /src/server/base/ereport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/ereport.cpp -------------------------------------------------------------------------------- /src/server/base/ereport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/ereport.h -------------------------------------------------------------------------------- /src/server/base/eventhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/eventhandler.cpp -------------------------------------------------------------------------------- /src/server/base/eventhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/eventhandler.h -------------------------------------------------------------------------------- /src/server/base/eventlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/eventlog.cpp -------------------------------------------------------------------------------- /src/server/base/eventlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/eventlog.h -------------------------------------------------------------------------------- /src/server/base/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/file.cpp -------------------------------------------------------------------------------- /src/server/base/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/file.h -------------------------------------------------------------------------------- /src/server/base/keyword.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/keyword.cpp -------------------------------------------------------------------------------- /src/server/base/keyword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/keyword.h -------------------------------------------------------------------------------- /src/server/base/keyword_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/keyword_pvt.h -------------------------------------------------------------------------------- /src/server/base/language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/language.cpp -------------------------------------------------------------------------------- /src/server/base/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/language.h -------------------------------------------------------------------------------- /src/server/base/lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/lexer.cpp -------------------------------------------------------------------------------- /src/server/base/lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/lexer.h -------------------------------------------------------------------------------- /src/server/base/lexer_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/lexer_pvt.h -------------------------------------------------------------------------------- /src/server/base/libbase.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/libbase.spec -------------------------------------------------------------------------------- /src/server/base/libbase.versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/libbase.versions -------------------------------------------------------------------------------- /src/server/base/loadavg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/loadavg.cpp -------------------------------------------------------------------------------- /src/server/base/loadavg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/loadavg.h -------------------------------------------------------------------------------- /src/server/base/minissl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/minissl.h -------------------------------------------------------------------------------- /src/server/base/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/net.cpp -------------------------------------------------------------------------------- /src/server/base/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/net.h -------------------------------------------------------------------------------- /src/server/base/netbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/netbuf.cpp -------------------------------------------------------------------------------- /src/server/base/netio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/netio.h -------------------------------------------------------------------------------- /src/server/base/netlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/netlayer.cpp -------------------------------------------------------------------------------- /src/server/base/nsassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/nsassert.h -------------------------------------------------------------------------------- /src/server/base/nscperror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/nscperror.c -------------------------------------------------------------------------------- /src/server/base/nscperror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/nscperror.h -------------------------------------------------------------------------------- /src/server/base/nterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/nterrors.h -------------------------------------------------------------------------------- /src/server/base/ntgenerr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/ntgenerr.cpp -------------------------------------------------------------------------------- /src/server/base/ntpipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/ntpipe.cpp -------------------------------------------------------------------------------- /src/server/base/ntservermessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/ntservermessage.cpp -------------------------------------------------------------------------------- /src/server/base/ntservermessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/ntservermessage.h -------------------------------------------------------------------------------- /src/server/base/objndx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/objndx.cpp -------------------------------------------------------------------------------- /src/server/base/objndx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/objndx.h -------------------------------------------------------------------------------- /src/server/base/params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/params.cpp -------------------------------------------------------------------------------- /src/server/base/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/params.h -------------------------------------------------------------------------------- /src/server/base/pathnames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/pathnames.cpp -------------------------------------------------------------------------------- /src/server/base/pathnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/pathnames.h -------------------------------------------------------------------------------- /src/server/base/pblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/pblock.cpp -------------------------------------------------------------------------------- /src/server/base/pblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/pblock.h -------------------------------------------------------------------------------- /src/server/base/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/platform.cpp -------------------------------------------------------------------------------- /src/server/base/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/platform.h -------------------------------------------------------------------------------- /src/server/base/plist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/plist.cpp -------------------------------------------------------------------------------- /src/server/base/plist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/plist.h -------------------------------------------------------------------------------- /src/server/base/plist_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/plist_pvt.h -------------------------------------------------------------------------------- /src/server/base/pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/pool.cpp -------------------------------------------------------------------------------- /src/server/base/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/pool.h -------------------------------------------------------------------------------- /src/server/base/pool_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/pool_pvt.h -------------------------------------------------------------------------------- /src/server/base/qvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/qvalue.cpp -------------------------------------------------------------------------------- /src/server/base/regexp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/regexp.cpp -------------------------------------------------------------------------------- /src/server/base/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/regexp.h -------------------------------------------------------------------------------- /src/server/base/restart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/restart.cpp -------------------------------------------------------------------------------- /src/server/base/rwlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/rwlock.cpp -------------------------------------------------------------------------------- /src/server/base/rwlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/rwlock.h -------------------------------------------------------------------------------- /src/server/base/sem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/sem.cpp -------------------------------------------------------------------------------- /src/server/base/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/sem.h -------------------------------------------------------------------------------- /src/server/base/servnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/servnss.cpp -------------------------------------------------------------------------------- /src/server/base/servnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/servnss.h -------------------------------------------------------------------------------- /src/server/base/servssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/servssl.c -------------------------------------------------------------------------------- /src/server/base/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/session.cpp -------------------------------------------------------------------------------- /src/server/base/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/session.h -------------------------------------------------------------------------------- /src/server/base/shexp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/shexp.cpp -------------------------------------------------------------------------------- /src/server/base/shexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/shexp.h -------------------------------------------------------------------------------- /src/server/base/shmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/shmem.cpp -------------------------------------------------------------------------------- /src/server/base/shmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/shmem.h -------------------------------------------------------------------------------- /src/server/base/sslconf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/sslconf.cpp -------------------------------------------------------------------------------- /src/server/base/sslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/sslconf.h -------------------------------------------------------------------------------- /src/server/base/strtok.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/strtok.cpp -------------------------------------------------------------------------------- /src/server/base/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/system.cpp -------------------------------------------------------------------------------- /src/server/base/systems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/systems.h -------------------------------------------------------------------------------- /src/server/base/systhr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/systhr.cpp -------------------------------------------------------------------------------- /src/server/base/systhr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/systhr.h -------------------------------------------------------------------------------- /src/server/base/unix_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/unix_utils.cpp -------------------------------------------------------------------------------- /src/server/base/unix_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/unix_utils.h -------------------------------------------------------------------------------- /src/server/base/uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/uri.cpp -------------------------------------------------------------------------------- /src/server/base/url64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/url64.cpp -------------------------------------------------------------------------------- /src/server/base/url64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/url64.h -------------------------------------------------------------------------------- /src/server/base/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/util.cpp -------------------------------------------------------------------------------- /src/server/base/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/util.h -------------------------------------------------------------------------------- /src/server/base/util_rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/util_rng.cpp -------------------------------------------------------------------------------- /src/server/base/uuencode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/uuencode.cpp -------------------------------------------------------------------------------- /src/server/base/uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/uuid.cpp -------------------------------------------------------------------------------- /src/server/base/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/uuid.h -------------------------------------------------------------------------------- /src/server/base/vs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/vs.cpp -------------------------------------------------------------------------------- /src/server/base/vs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/vs.h -------------------------------------------------------------------------------- /src/server/base/wdservermessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/wdservermessage.cpp -------------------------------------------------------------------------------- /src/server/base/wdservermessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/base/wdservermessage.h -------------------------------------------------------------------------------- /src/server/extras/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/extras/Makefile -------------------------------------------------------------------------------- /src/server/extras/binlog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/extras/binlog/Makefile -------------------------------------------------------------------------------- /src/server/extras/binlog/binlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/extras/binlog/binlog.cpp -------------------------------------------------------------------------------- /src/server/frame/ErrMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/ErrMessages.h -------------------------------------------------------------------------------- /src/server/frame/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/Makefile -------------------------------------------------------------------------------- /src/server/frame/accel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/accel.cpp -------------------------------------------------------------------------------- /src/server/frame/accel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/accel.h -------------------------------------------------------------------------------- /src/server/frame/acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/acl.h -------------------------------------------------------------------------------- /src/server/frame/aclframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/aclframe.cpp -------------------------------------------------------------------------------- /src/server/frame/aclinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/aclinit.h -------------------------------------------------------------------------------- /src/server/frame/args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/args.cpp -------------------------------------------------------------------------------- /src/server/frame/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/args.h -------------------------------------------------------------------------------- /src/server/frame/args_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/args_pvt.h -------------------------------------------------------------------------------- /src/server/frame/clauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/clauth.h -------------------------------------------------------------------------------- /src/server/frame/cmstat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/cmstat.cpp -------------------------------------------------------------------------------- /src/server/frame/cmstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/cmstat.h -------------------------------------------------------------------------------- /src/server/frame/conf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/conf.cpp -------------------------------------------------------------------------------- /src/server/frame/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/conf.h -------------------------------------------------------------------------------- /src/server/frame/conf_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/conf_api.cpp -------------------------------------------------------------------------------- /src/server/frame/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/conf_api.h -------------------------------------------------------------------------------- /src/server/frame/conf_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/conf_init.cpp -------------------------------------------------------------------------------- /src/server/frame/conf_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/conf_init.h -------------------------------------------------------------------------------- /src/server/frame/cookie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/cookie.cpp -------------------------------------------------------------------------------- /src/server/frame/cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/cookie.h -------------------------------------------------------------------------------- /src/server/frame/dbtframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/dbtframe.h -------------------------------------------------------------------------------- /src/server/frame/dnfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/dnfilter.cpp -------------------------------------------------------------------------------- /src/server/frame/dnfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/dnfilter.h -------------------------------------------------------------------------------- /src/server/frame/domain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/domain.cpp -------------------------------------------------------------------------------- /src/server/frame/domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/domain.h -------------------------------------------------------------------------------- /src/server/frame/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/error.cpp -------------------------------------------------------------------------------- /src/server/frame/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/error.h -------------------------------------------------------------------------------- /src/server/frame/expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/expr.cpp -------------------------------------------------------------------------------- /src/server/frame/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/expr.h -------------------------------------------------------------------------------- /src/server/frame/expr.tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/expr.tab.cpp -------------------------------------------------------------------------------- /src/server/frame/expr.tab.cpp.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/expr.tab.cpp.sed -------------------------------------------------------------------------------- /src/server/frame/expr.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/expr.tab.h -------------------------------------------------------------------------------- /src/server/frame/expr.tab.h.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/expr.tab.h.sed -------------------------------------------------------------------------------- /src/server/frame/expr.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/expr.y -------------------------------------------------------------------------------- /src/server/frame/expr_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/expr_parse.h -------------------------------------------------------------------------------- /src/server/frame/expr_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/expr_pvt.h -------------------------------------------------------------------------------- /src/server/frame/expr_yy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/expr_yy.h -------------------------------------------------------------------------------- /src/server/frame/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/filter.cpp -------------------------------------------------------------------------------- /src/server/frame/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/filter.h -------------------------------------------------------------------------------- /src/server/frame/filter_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/filter_pvt.h -------------------------------------------------------------------------------- /src/server/frame/frameobjs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/frameobjs.mk -------------------------------------------------------------------------------- /src/server/frame/func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/func.cpp -------------------------------------------------------------------------------- /src/server/frame/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/func.h -------------------------------------------------------------------------------- /src/server/frame/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/http.cpp -------------------------------------------------------------------------------- /src/server/frame/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/http.h -------------------------------------------------------------------------------- /src/server/frame/http_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/http_ext.h -------------------------------------------------------------------------------- /src/server/frame/httpact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/httpact.cpp -------------------------------------------------------------------------------- /src/server/frame/httpact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/httpact.h -------------------------------------------------------------------------------- /src/server/frame/httpd-fn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/httpd-fn.cpp -------------------------------------------------------------------------------- /src/server/frame/httpdir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/httpdir.cpp -------------------------------------------------------------------------------- /src/server/frame/httpdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/httpdir.h -------------------------------------------------------------------------------- /src/server/frame/httpfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/httpfilter.cpp -------------------------------------------------------------------------------- /src/server/frame/httpfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/httpfilter.h -------------------------------------------------------------------------------- /src/server/frame/ipfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/ipfilter.cpp -------------------------------------------------------------------------------- /src/server/frame/ipfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/ipfilter.h -------------------------------------------------------------------------------- /src/server/frame/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/log.cpp -------------------------------------------------------------------------------- /src/server/frame/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/log.h -------------------------------------------------------------------------------- /src/server/frame/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/model.cpp -------------------------------------------------------------------------------- /src/server/frame/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/model.h -------------------------------------------------------------------------------- /src/server/frame/model_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/model_pvt.h -------------------------------------------------------------------------------- /src/server/frame/nsapi30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/nsapi30.cpp -------------------------------------------------------------------------------- /src/server/frame/nsapi_accessors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/nsapi_accessors.cpp -------------------------------------------------------------------------------- /src/server/frame/nsapi_accessors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/nsapi_accessors.h -------------------------------------------------------------------------------- /src/server/frame/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/object.cpp -------------------------------------------------------------------------------- /src/server/frame/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/object.h -------------------------------------------------------------------------------- /src/server/frame/objset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/objset.cpp -------------------------------------------------------------------------------- /src/server/frame/objset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/objset.h -------------------------------------------------------------------------------- /src/server/frame/otype_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/otype_helper.cpp -------------------------------------------------------------------------------- /src/server/frame/otype_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/otype_helper.h -------------------------------------------------------------------------------- /src/server/frame/outputvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/outputvector.h -------------------------------------------------------------------------------- /src/server/frame/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/protocol.h -------------------------------------------------------------------------------- /src/server/frame/redirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/redirect.h -------------------------------------------------------------------------------- /src/server/frame/req.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/req.cpp -------------------------------------------------------------------------------- /src/server/frame/req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/req.h -------------------------------------------------------------------------------- /src/server/frame/result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/result.cpp -------------------------------------------------------------------------------- /src/server/frame/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/result.h -------------------------------------------------------------------------------- /src/server/frame/result_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/result_pvt.h -------------------------------------------------------------------------------- /src/server/frame/servact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/servact.h -------------------------------------------------------------------------------- /src/server/frame/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/tokenizer.cpp -------------------------------------------------------------------------------- /src/server/frame/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/frame/tokenizer.h -------------------------------------------------------------------------------- /src/server/httpdaemon/AuthDb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/AuthDb.cpp -------------------------------------------------------------------------------- /src/server/httpdaemon/AuthDb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/AuthDb.h -------------------------------------------------------------------------------- /src/server/httpdaemon/JavaConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/JavaConfig.cpp -------------------------------------------------------------------------------- /src/server/httpdaemon/JavaConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/JavaConfig.h -------------------------------------------------------------------------------- /src/server/httpdaemon/ListenSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/ListenSocket.h -------------------------------------------------------------------------------- /src/server/httpdaemon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/Makefile -------------------------------------------------------------------------------- /src/server/httpdaemon/ParentAdmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/ParentAdmin.h -------------------------------------------------------------------------------- /src/server/httpdaemon/ParentStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/ParentStats.h -------------------------------------------------------------------------------- /src/server/httpdaemon/StatsClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/StatsClient.h -------------------------------------------------------------------------------- /src/server/httpdaemon/UnixSignals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/UnixSignals.h -------------------------------------------------------------------------------- /src/server/httpdaemon/WebServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/WebServer.cpp -------------------------------------------------------------------------------- /src/server/httpdaemon/WebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/WebServer.h -------------------------------------------------------------------------------- /src/server/httpdaemon/acceptconn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/acceptconn.cpp -------------------------------------------------------------------------------- /src/server/httpdaemon/acceptconn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/acceptconn.h -------------------------------------------------------------------------------- /src/server/httpdaemon/connqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/connqueue.cpp -------------------------------------------------------------------------------- /src/server/httpdaemon/connqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/connqueue.h -------------------------------------------------------------------------------- /src/server/httpdaemon/daemonobjs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/daemonobjs.mk -------------------------------------------------------------------------------- /src/server/httpdaemon/fileutility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/fileutility.h -------------------------------------------------------------------------------- /src/server/httpdaemon/httpdaemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/httpdaemon.h -------------------------------------------------------------------------------- /src/server/httpdaemon/httpheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/httpheader.cpp -------------------------------------------------------------------------------- /src/server/httpdaemon/httpheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/httpheader.h -------------------------------------------------------------------------------- /src/server/httpdaemon/httprequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/httprequest.h -------------------------------------------------------------------------------- /src/server/httpdaemon/kapollthr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/kapollthr.cpp -------------------------------------------------------------------------------- /src/server/httpdaemon/kapollthr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/kapollthr.h -------------------------------------------------------------------------------- /src/server/httpdaemon/libdaemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/libdaemon.h -------------------------------------------------------------------------------- /src/server/httpdaemon/logmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/logmanager.cpp -------------------------------------------------------------------------------- /src/server/httpdaemon/logmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/logmanager.h -------------------------------------------------------------------------------- /src/server/httpdaemon/lsmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/lsmanager.h -------------------------------------------------------------------------------- /src/server/httpdaemon/mime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/mime.cpp -------------------------------------------------------------------------------- /src/server/httpdaemon/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/mime.h -------------------------------------------------------------------------------- /src/server/httpdaemon/ntmagnus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/ntmagnus.cpp -------------------------------------------------------------------------------- /src/server/httpdaemon/nvpairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/nvpairs.cpp -------------------------------------------------------------------------------- /src/server/httpdaemon/nvpairs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/nvpairs.h -------------------------------------------------------------------------------- /src/server/httpdaemon/polladapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/polladapter.h -------------------------------------------------------------------------------- /src/server/httpdaemon/pollarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/pollarray.cpp -------------------------------------------------------------------------------- /src/server/httpdaemon/pollarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/pollarray.h -------------------------------------------------------------------------------- /src/server/httpdaemon/pollmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/pollmanager.h -------------------------------------------------------------------------------- /src/server/httpdaemon/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/scheduler.cpp -------------------------------------------------------------------------------- /src/server/httpdaemon/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/scheduler.h -------------------------------------------------------------------------------- /src/server/httpdaemon/servername.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/servername.cpp -------------------------------------------------------------------------------- /src/server/httpdaemon/servername.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/servername.h -------------------------------------------------------------------------------- /src/server/httpdaemon/statsavg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/statsavg.cpp -------------------------------------------------------------------------------- /src/server/httpdaemon/statsavg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/statsavg.h -------------------------------------------------------------------------------- /src/server/httpdaemon/statsbkupmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/statsbkupmgr.h -------------------------------------------------------------------------------- /src/server/httpdaemon/statsmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/statsmanager.h -------------------------------------------------------------------------------- /src/server/httpdaemon/statsmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/statsmessage.h -------------------------------------------------------------------------------- /src/server/httpdaemon/statsnodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/statsnodes.h -------------------------------------------------------------------------------- /src/server/httpdaemon/statsutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/statsutil.h -------------------------------------------------------------------------------- /src/server/httpdaemon/stdhandles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/stdhandles.h -------------------------------------------------------------------------------- /src/server/httpdaemon/throttling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/throttling.h -------------------------------------------------------------------------------- /src/server/httpdaemon/updatecrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/updatecrl.h -------------------------------------------------------------------------------- /src/server/httpdaemon/vsconf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/vsconf.cpp -------------------------------------------------------------------------------- /src/server/httpdaemon/vsconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/vsconf.h -------------------------------------------------------------------------------- /src/server/httpdaemon/vsmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpdaemon/vsmanager.h -------------------------------------------------------------------------------- /src/server/httpparser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpparser/Makefile -------------------------------------------------------------------------------- /src/server/httpparser/httpparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/httpparser/httpparser.h -------------------------------------------------------------------------------- /src/server/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/i18n.h -------------------------------------------------------------------------------- /src/server/ldaputil/LdapDNList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/LdapDNList.cpp -------------------------------------------------------------------------------- /src/server/ldaputil/LdapDNList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/LdapDNList.h -------------------------------------------------------------------------------- /src/server/ldaputil/LdapEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/LdapEntry.cpp -------------------------------------------------------------------------------- /src/server/ldaputil/LdapEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/LdapEntry.h -------------------------------------------------------------------------------- /src/server/ldaputil/LdapOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/LdapOps.cpp -------------------------------------------------------------------------------- /src/server/ldaputil/LdapSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/LdapSession.h -------------------------------------------------------------------------------- /src/server/ldaputil/LdapValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/LdapValues.cpp -------------------------------------------------------------------------------- /src/server/ldaputil/LdapValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/LdapValues.h -------------------------------------------------------------------------------- /src/server/ldaputil/LinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/LinkedList.cpp -------------------------------------------------------------------------------- /src/server/ldaputil/LinkedList.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/LinkedList.hh -------------------------------------------------------------------------------- /src/server/ldaputil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/Makefile -------------------------------------------------------------------------------- /src/server/ldaputil/cert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/cert.cpp -------------------------------------------------------------------------------- /src/server/ldaputil/certmap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/certmap.conf -------------------------------------------------------------------------------- /src/server/ldaputil/certmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/certmap.cpp -------------------------------------------------------------------------------- /src/server/ldaputil/certmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/certmap.h -------------------------------------------------------------------------------- /src/server/ldaputil/dbconf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/dbconf.cpp -------------------------------------------------------------------------------- /src/server/ldaputil/dbconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/dbconf.h -------------------------------------------------------------------------------- /src/server/ldaputil/dbtldaputil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/dbtldaputil.h -------------------------------------------------------------------------------- /src/server/ldaputil/errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/errors.cpp -------------------------------------------------------------------------------- /src/server/ldaputil/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/errors.h -------------------------------------------------------------------------------- /src/server/ldaputil/extcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/extcmap.h -------------------------------------------------------------------------------- /src/server/ldaputil/ldaputil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/ldaputil.cpp -------------------------------------------------------------------------------- /src/server/ldaputil/ldaputil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/ldaputil.h -------------------------------------------------------------------------------- /src/server/ldaputil/ldaputili.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/ldaputili.h -------------------------------------------------------------------------------- /src/server/ldaputil/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/list.h -------------------------------------------------------------------------------- /src/server/ldaputil/vtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/ldaputil/vtable.cpp -------------------------------------------------------------------------------- /src/server/libaccess/FileRealm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/FileRealm.cpp -------------------------------------------------------------------------------- /src/server/libaccess/FileRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/FileRealm.h -------------------------------------------------------------------------------- /src/server/libaccess/LdapRealm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/LdapRealm.cpp -------------------------------------------------------------------------------- /src/server/libaccess/LdapRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/LdapRealm.h -------------------------------------------------------------------------------- /src/server/libaccess/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/Makefile -------------------------------------------------------------------------------- /src/server/libaccess/WSRealm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/WSRealm.cpp -------------------------------------------------------------------------------- /src/server/libaccess/WSRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/WSRealm.h -------------------------------------------------------------------------------- /src/server/libaccess/accessobjs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/accessobjs.mk -------------------------------------------------------------------------------- /src/server/libaccess/acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/acl.h -------------------------------------------------------------------------------- /src/server/libaccess/acl.tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/acl.tab.cpp -------------------------------------------------------------------------------- /src/server/libaccess/acl.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/acl.tab.h -------------------------------------------------------------------------------- /src/server/libaccess/acl.yy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/acl.yy.cpp -------------------------------------------------------------------------------- /src/server/libaccess/aclacl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/aclacl.cpp -------------------------------------------------------------------------------- /src/server/libaccess/aclcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/aclcache.cpp -------------------------------------------------------------------------------- /src/server/libaccess/aclcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/aclcache.h -------------------------------------------------------------------------------- /src/server/libaccess/acldb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/acldb.cpp -------------------------------------------------------------------------------- /src/server/libaccess/acldbtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/acldbtype.cpp -------------------------------------------------------------------------------- /src/server/libaccess/aclerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/aclerror.cpp -------------------------------------------------------------------------------- /src/server/libaccess/aclerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/aclerror.h -------------------------------------------------------------------------------- /src/server/libaccess/aclexpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/aclexpr.cpp -------------------------------------------------------------------------------- /src/server/libaccess/aclflush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/aclflush.cpp -------------------------------------------------------------------------------- /src/server/libaccess/aclglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/aclglobal.h -------------------------------------------------------------------------------- /src/server/libaccess/aclinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/aclinit.cpp -------------------------------------------------------------------------------- /src/server/libaccess/acllas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/acllas.cpp -------------------------------------------------------------------------------- /src/server/libaccess/acllist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/acllist.cpp -------------------------------------------------------------------------------- /src/server/libaccess/aclmethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/aclmethod.cpp -------------------------------------------------------------------------------- /src/server/libaccess/aclpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/aclpath.cpp -------------------------------------------------------------------------------- /src/server/libaccess/aclpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/aclpriv.h -------------------------------------------------------------------------------- /src/server/libaccess/aclproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/aclproto.h -------------------------------------------------------------------------------- /src/server/libaccess/aclscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/aclscan.h -------------------------------------------------------------------------------- /src/server/libaccess/aclscan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/aclscan.l -------------------------------------------------------------------------------- /src/server/libaccess/aclspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/aclspace.cpp -------------------------------------------------------------------------------- /src/server/libaccess/acltext.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/acltext.y -------------------------------------------------------------------------------- /src/server/libaccess/acltools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/acltools.cpp -------------------------------------------------------------------------------- /src/server/libaccess/aclutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/aclutil.cpp -------------------------------------------------------------------------------- /src/server/libaccess/dacl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/dacl.cpp -------------------------------------------------------------------------------- /src/server/libaccess/dacl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/dacl.h -------------------------------------------------------------------------------- /src/server/libaccess/digest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/digest.cpp -------------------------------------------------------------------------------- /src/server/libaccess/digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/digest.h -------------------------------------------------------------------------------- /src/server/libaccess/fileacl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/fileacl.cpp -------------------------------------------------------------------------------- /src/server/libaccess/fileacl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/fileacl.h -------------------------------------------------------------------------------- /src/server/libaccess/genacl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/genacl.cpp -------------------------------------------------------------------------------- /src/server/libaccess/genacl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/genacl.h -------------------------------------------------------------------------------- /src/server/libaccess/gssapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/gssapi.cpp -------------------------------------------------------------------------------- /src/server/libaccess/gssapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/gssapi.h -------------------------------------------------------------------------------- /src/server/libaccess/lascipher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/lascipher.cpp -------------------------------------------------------------------------------- /src/server/libaccess/lasdns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/lasdns.cpp -------------------------------------------------------------------------------- /src/server/libaccess/lasgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/lasgroup.cpp -------------------------------------------------------------------------------- /src/server/libaccess/lasip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/lasip.cpp -------------------------------------------------------------------------------- /src/server/libaccess/lasowner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/lasowner.cpp -------------------------------------------------------------------------------- /src/server/libaccess/lasrole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/lasrole.cpp -------------------------------------------------------------------------------- /src/server/libaccess/lasssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/lasssl.cpp -------------------------------------------------------------------------------- /src/server/libaccess/lastod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/lastod.cpp -------------------------------------------------------------------------------- /src/server/libaccess/lasuser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/lasuser.cpp -------------------------------------------------------------------------------- /src/server/libaccess/ldapacl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/ldapacl.cpp -------------------------------------------------------------------------------- /src/server/libaccess/ldapacl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/ldapacl.h -------------------------------------------------------------------------------- /src/server/libaccess/nsauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/nsauth.h -------------------------------------------------------------------------------- /src/server/libaccess/nseframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/nseframe.cpp -------------------------------------------------------------------------------- /src/server/libaccess/nserror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/nserror.h -------------------------------------------------------------------------------- /src/server/libaccess/nullacl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/nullacl.cpp -------------------------------------------------------------------------------- /src/server/libaccess/nullacl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/nullacl.h -------------------------------------------------------------------------------- /src/server/libaccess/oneeval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/oneeval.cpp -------------------------------------------------------------------------------- /src/server/libaccess/pamacl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/pamacl.cpp -------------------------------------------------------------------------------- /src/server/libaccess/pamacl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/pamacl.h -------------------------------------------------------------------------------- /src/server/libaccess/pamauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/pamauth.c -------------------------------------------------------------------------------- /src/server/libaccess/pamauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/pamauth.h -------------------------------------------------------------------------------- /src/server/libaccess/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/parse.h -------------------------------------------------------------------------------- /src/server/libaccess/symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/symbols.cpp -------------------------------------------------------------------------------- /src/server/libaccess/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/symbols.h -------------------------------------------------------------------------------- /src/server/libaccess/usrcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/usrcache.cpp -------------------------------------------------------------------------------- /src/server/libaccess/usrcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/usrcache.h -------------------------------------------------------------------------------- /src/server/libaccess/yy-sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libaccess/yy-sed -------------------------------------------------------------------------------- /src/server/libadmin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libadmin/Makefile -------------------------------------------------------------------------------- /src/server/libadmin/adminobjs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libadmin/adminobjs.mk -------------------------------------------------------------------------------- /src/server/libadmin/admserv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libadmin/admserv.cpp -------------------------------------------------------------------------------- /src/server/libadmin/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libadmin/code.cpp -------------------------------------------------------------------------------- /src/server/libadmin/cron_conf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libadmin/cron_conf.cpp -------------------------------------------------------------------------------- /src/server/libadmin/cronutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libadmin/cronutil.h -------------------------------------------------------------------------------- /src/server/libadmin/httpcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libadmin/httpcode.h -------------------------------------------------------------------------------- /src/server/libadmin/libadmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libadmin/libadmin.h -------------------------------------------------------------------------------- /src/server/libadmin/password.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libadmin/password.cpp -------------------------------------------------------------------------------- /src/server/libadmin/pw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libadmin/pw.h -------------------------------------------------------------------------------- /src/server/libadmin/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libadmin/resource.h -------------------------------------------------------------------------------- /src/server/libadmin/resource_icu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libadmin/resource_icu.c -------------------------------------------------------------------------------- /src/server/libadmin/strlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libadmin/strlist.cpp -------------------------------------------------------------------------------- /src/server/libcrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libcrypt/Makefile -------------------------------------------------------------------------------- /src/server/libcrypt/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libcrypt/crypt.c -------------------------------------------------------------------------------- /src/server/libdrcache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libdrcache/Makefile -------------------------------------------------------------------------------- /src/server/libdrcache/drcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libdrcache/drcache.cpp -------------------------------------------------------------------------------- /src/server/libdrcache/drcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libdrcache/drcache.h -------------------------------------------------------------------------------- /src/server/libdrcache/drnsapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libdrcache/drnsapi.cpp -------------------------------------------------------------------------------- /src/server/libmessages/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libmessages/Makefile -------------------------------------------------------------------------------- /src/server/libmessages/messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libmessages/messages.c -------------------------------------------------------------------------------- /src/server/libmessages/messages.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libmessages/messages.mc -------------------------------------------------------------------------------- /src/server/libproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/Makefile -------------------------------------------------------------------------------- /src/server/libproxy/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/channel.cpp -------------------------------------------------------------------------------- /src/server/libproxy/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/channel.h -------------------------------------------------------------------------------- /src/server/libproxy/dbtlibproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/dbtlibproxy.h -------------------------------------------------------------------------------- /src/server/libproxy/httpclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/httpclient.cpp -------------------------------------------------------------------------------- /src/server/libproxy/httpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/httpclient.h -------------------------------------------------------------------------------- /src/server/libproxy/proxyerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/proxyerror.cpp -------------------------------------------------------------------------------- /src/server/libproxy/proxyerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/proxyerror.h -------------------------------------------------------------------------------- /src/server/libproxy/proxyobjs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/proxyobjs.mk -------------------------------------------------------------------------------- /src/server/libproxy/putils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/putils.cpp -------------------------------------------------------------------------------- /src/server/libproxy/reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/reverse.cpp -------------------------------------------------------------------------------- /src/server/libproxy/reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/reverse.h -------------------------------------------------------------------------------- /src/server/libproxy/route.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/route.cpp -------------------------------------------------------------------------------- /src/server/libproxy/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/route.h -------------------------------------------------------------------------------- /src/server/libproxy/stuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/stuff.cpp -------------------------------------------------------------------------------- /src/server/libproxy/stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/stuff.h -------------------------------------------------------------------------------- /src/server/libproxy/url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/url.cpp -------------------------------------------------------------------------------- /src/server/libproxy/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/url.h -------------------------------------------------------------------------------- /src/server/libproxy/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libproxy/util.h -------------------------------------------------------------------------------- /src/server/libsed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsed/Makefile -------------------------------------------------------------------------------- /src/server/libsed/dbtlibsed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsed/dbtlibsed.h -------------------------------------------------------------------------------- /src/server/libsed/libsed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsed/libsed.h -------------------------------------------------------------------------------- /src/server/libsed/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsed/regexp.c -------------------------------------------------------------------------------- /src/server/libsed/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsed/regexp.h -------------------------------------------------------------------------------- /src/server/libsed/sed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsed/sed.h -------------------------------------------------------------------------------- /src/server/libsed/sed0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsed/sed0.c -------------------------------------------------------------------------------- /src/server/libsed/sed1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsed/sed1.c -------------------------------------------------------------------------------- /src/server/libserverxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libserverxml/Makefile -------------------------------------------------------------------------------- /src/server/libsi18n/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsi18n/Makefile -------------------------------------------------------------------------------- /src/server/libsi18n/dblink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsi18n/dblink.c -------------------------------------------------------------------------------- /src/server/libsi18n/getlang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsi18n/getlang.cpp -------------------------------------------------------------------------------- /src/server/libsi18n/getstrdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsi18n/getstrdb.cpp -------------------------------------------------------------------------------- /src/server/libsi18n/getstrmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsi18n/getstrmem.cpp -------------------------------------------------------------------------------- /src/server/libsi18n/gshttpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsi18n/gshttpd.h -------------------------------------------------------------------------------- /src/server/libsi18n/langpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsi18n/langpath.cpp -------------------------------------------------------------------------------- /src/server/libsi18n/makefile.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsi18n/makefile.step2 -------------------------------------------------------------------------------- /src/server/libsi18n/makstrdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsi18n/makstrdb.c -------------------------------------------------------------------------------- /src/server/libsi18n/parselang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/libsi18n/parselang.cpp -------------------------------------------------------------------------------- /src/server/netsite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/netsite.h -------------------------------------------------------------------------------- /src/server/plugins/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/plugins/Makefile -------------------------------------------------------------------------------- /src/server/plugins/fastcgi/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/plugins/fastcgi/util.h -------------------------------------------------------------------------------- /src/server/plugins/java/HashUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/plugins/java/HashUtil.h -------------------------------------------------------------------------------- /src/server/plugins/java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/plugins/java/Makefile -------------------------------------------------------------------------------- /src/server/plugins/java/j2ee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/plugins/java/j2ee.cpp -------------------------------------------------------------------------------- /src/server/plugins/java/jvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/plugins/java/jvm.c -------------------------------------------------------------------------------- /src/server/plugins/shtml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/plugins/shtml/Makefile -------------------------------------------------------------------------------- /src/server/public/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/Makefile -------------------------------------------------------------------------------- /src/server/public/base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/Makefile -------------------------------------------------------------------------------- /src/server/public/base/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/buffer.h -------------------------------------------------------------------------------- /src/server/public/base/cinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/cinfo.h -------------------------------------------------------------------------------- /src/server/public/base/crit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/crit.h -------------------------------------------------------------------------------- /src/server/public/base/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/daemon.h -------------------------------------------------------------------------------- /src/server/public/base/ereport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/ereport.h -------------------------------------------------------------------------------- /src/server/public/base/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/file.h -------------------------------------------------------------------------------- /src/server/public/base/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/net.h -------------------------------------------------------------------------------- /src/server/public/base/pblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/pblock.h -------------------------------------------------------------------------------- /src/server/public/base/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/pool.h -------------------------------------------------------------------------------- /src/server/public/base/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/regexp.h -------------------------------------------------------------------------------- /src/server/public/base/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/sem.h -------------------------------------------------------------------------------- /src/server/public/base/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/session.h -------------------------------------------------------------------------------- /src/server/public/base/shexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/shexp.h -------------------------------------------------------------------------------- /src/server/public/base/shmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/shmem.h -------------------------------------------------------------------------------- /src/server/public/base/systems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/systems.h -------------------------------------------------------------------------------- /src/server/public/base/systhr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/systhr.h -------------------------------------------------------------------------------- /src/server/public/base/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/base/util.h -------------------------------------------------------------------------------- /src/server/public/drnsapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/drnsapi.h -------------------------------------------------------------------------------- /src/server/public/frame/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/frame/Makefile -------------------------------------------------------------------------------- /src/server/public/frame/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/frame/conf.h -------------------------------------------------------------------------------- /src/server/public/frame/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/frame/func.h -------------------------------------------------------------------------------- /src/server/public/frame/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/frame/http.h -------------------------------------------------------------------------------- /src/server/public/frame/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/frame/log.h -------------------------------------------------------------------------------- /src/server/public/frame/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/frame/object.h -------------------------------------------------------------------------------- /src/server/public/frame/objset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/frame/objset.h -------------------------------------------------------------------------------- /src/server/public/frame/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/frame/protocol.h -------------------------------------------------------------------------------- /src/server/public/frame/req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/frame/req.h -------------------------------------------------------------------------------- /src/server/public/iwsstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/iwsstats.h -------------------------------------------------------------------------------- /src/server/public/netsite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/netsite.h -------------------------------------------------------------------------------- /src/server/public/nsacl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/nsacl/Makefile -------------------------------------------------------------------------------- /src/server/public/nsacl/aclapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/nsacl/aclapi.h -------------------------------------------------------------------------------- /src/server/public/nsacl/acldef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/nsacl/acldef.h -------------------------------------------------------------------------------- /src/server/public/nsacl/nserrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/nsacl/nserrdef.h -------------------------------------------------------------------------------- /src/server/public/nsacl/plistdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/nsacl/plistdef.h -------------------------------------------------------------------------------- /src/server/public/nsapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/nsapi.h -------------------------------------------------------------------------------- /src/server/public/shtml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/public/shtml/Makefile -------------------------------------------------------------------------------- /src/server/safs/CExecReqPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/CExecReqPipe.cpp -------------------------------------------------------------------------------- /src/server/safs/CExecReqPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/CExecReqPipe.h -------------------------------------------------------------------------------- /src/server/safs/Cgistub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/Cgistub.c -------------------------------------------------------------------------------- /src/server/safs/Cgistub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/Cgistub.h -------------------------------------------------------------------------------- /src/server/safs/ChildExec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/ChildExec.cpp -------------------------------------------------------------------------------- /src/server/safs/ChildExec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/ChildExec.h -------------------------------------------------------------------------------- /src/server/safs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/Makefile -------------------------------------------------------------------------------- /src/server/safs/Makefile.cgistub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/Makefile.cgistub -------------------------------------------------------------------------------- /src/server/safs/acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/acl.h -------------------------------------------------------------------------------- /src/server/safs/aclinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/aclinit.h -------------------------------------------------------------------------------- /src/server/safs/aclsafs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/aclsafs.cpp -------------------------------------------------------------------------------- /src/server/safs/addlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/addlog.cpp -------------------------------------------------------------------------------- /src/server/safs/addlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/addlog.h -------------------------------------------------------------------------------- /src/server/safs/auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/auth.cpp -------------------------------------------------------------------------------- /src/server/safs/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/auth.h -------------------------------------------------------------------------------- /src/server/safs/cgi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/cgi.cpp -------------------------------------------------------------------------------- /src/server/safs/cgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/cgi.h -------------------------------------------------------------------------------- /src/server/safs/child.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/child.cpp -------------------------------------------------------------------------------- /src/server/safs/child.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/child.h -------------------------------------------------------------------------------- /src/server/safs/clauth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/clauth.cpp -------------------------------------------------------------------------------- /src/server/safs/clauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/clauth.h -------------------------------------------------------------------------------- /src/server/safs/cond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/cond.cpp -------------------------------------------------------------------------------- /src/server/safs/cond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/cond.h -------------------------------------------------------------------------------- /src/server/safs/control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/control.cpp -------------------------------------------------------------------------------- /src/server/safs/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/control.h -------------------------------------------------------------------------------- /src/server/safs/dbtsafs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/dbtsafs.h -------------------------------------------------------------------------------- /src/server/safs/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/debug.cpp -------------------------------------------------------------------------------- /src/server/safs/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/debug.h -------------------------------------------------------------------------------- /src/server/safs/deprecated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/deprecated.cpp -------------------------------------------------------------------------------- /src/server/safs/deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/deprecated.h -------------------------------------------------------------------------------- /src/server/safs/digest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/digest.cpp -------------------------------------------------------------------------------- /src/server/safs/digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/digest.h -------------------------------------------------------------------------------- /src/server/safs/dl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/dl.cpp -------------------------------------------------------------------------------- /src/server/safs/dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/dl.h -------------------------------------------------------------------------------- /src/server/safs/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/dump.cpp -------------------------------------------------------------------------------- /src/server/safs/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/dump.h -------------------------------------------------------------------------------- /src/server/safs/errorbong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/errorbong.cpp -------------------------------------------------------------------------------- /src/server/safs/errorbong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/errorbong.h -------------------------------------------------------------------------------- /src/server/safs/favicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/favicon.cpp -------------------------------------------------------------------------------- /src/server/safs/favicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/favicon.h -------------------------------------------------------------------------------- /src/server/safs/filtersafs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/filtersafs.cpp -------------------------------------------------------------------------------- /src/server/safs/filtersafs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/filtersafs.h -------------------------------------------------------------------------------- /src/server/safs/flexlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/flexlog.cpp -------------------------------------------------------------------------------- /src/server/safs/flexlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/flexlog.h -------------------------------------------------------------------------------- /src/server/safs/flexlogcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/flexlogcommon.h -------------------------------------------------------------------------------- /src/server/safs/headerfooter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/headerfooter.cpp -------------------------------------------------------------------------------- /src/server/safs/headerfooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/headerfooter.h -------------------------------------------------------------------------------- /src/server/safs/httpcompression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/httpcompression.h -------------------------------------------------------------------------------- /src/server/safs/index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/index.cpp -------------------------------------------------------------------------------- /src/server/safs/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/index.h -------------------------------------------------------------------------------- /src/server/safs/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/init.cpp -------------------------------------------------------------------------------- /src/server/safs/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/init.h -------------------------------------------------------------------------------- /src/server/safs/init_fn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/init_fn.cpp -------------------------------------------------------------------------------- /src/server/safs/init_fn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/init_fn.h -------------------------------------------------------------------------------- /src/server/safs/logsafs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/logsafs.cpp -------------------------------------------------------------------------------- /src/server/safs/logsafs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/logsafs.h -------------------------------------------------------------------------------- /src/server/safs/nsapicachesaf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/nsapicachesaf.cpp -------------------------------------------------------------------------------- /src/server/safs/nsapicachesaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/nsapicachesaf.h -------------------------------------------------------------------------------- /src/server/safs/nsconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/nsconfig.c -------------------------------------------------------------------------------- /src/server/safs/nsfcsafs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/nsfcsafs.cpp -------------------------------------------------------------------------------- /src/server/safs/nsfcsafs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/nsfcsafs.h -------------------------------------------------------------------------------- /src/server/safs/nstpsafs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/nstpsafs.cpp -------------------------------------------------------------------------------- /src/server/safs/nstpsafs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/nstpsafs.h -------------------------------------------------------------------------------- /src/server/safs/ntconsafs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/ntconsafs.cpp -------------------------------------------------------------------------------- /src/server/safs/ntconsafs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/ntconsafs.h -------------------------------------------------------------------------------- /src/server/safs/ntrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/ntrans.cpp -------------------------------------------------------------------------------- /src/server/safs/ntrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/ntrans.h -------------------------------------------------------------------------------- /src/server/safs/ntwincgi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/ntwincgi.cpp -------------------------------------------------------------------------------- /src/server/safs/otype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/otype.cpp -------------------------------------------------------------------------------- /src/server/safs/otype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/otype.h -------------------------------------------------------------------------------- /src/server/safs/pcheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/pcheck.cpp -------------------------------------------------------------------------------- /src/server/safs/pcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/pcheck.h -------------------------------------------------------------------------------- /src/server/safs/perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/perf.cpp -------------------------------------------------------------------------------- /src/server/safs/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/perf.h -------------------------------------------------------------------------------- /src/server/safs/poolsafs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/poolsafs.cpp -------------------------------------------------------------------------------- /src/server/safs/poolsafs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/poolsafs.h -------------------------------------------------------------------------------- /src/server/safs/preencrypted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/preencrypted.cpp -------------------------------------------------------------------------------- /src/server/safs/preencrypted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/preencrypted.h -------------------------------------------------------------------------------- /src/server/safs/qos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/qos.cpp -------------------------------------------------------------------------------- /src/server/safs/qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/qos.h -------------------------------------------------------------------------------- /src/server/safs/reconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/reconfig.cpp -------------------------------------------------------------------------------- /src/server/safs/reconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/reconfig.h -------------------------------------------------------------------------------- /src/server/safs/reqlimit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/reqlimit.cpp -------------------------------------------------------------------------------- /src/server/safs/reqlimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/reqlimit.h -------------------------------------------------------------------------------- /src/server/safs/safsobjs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/safsobjs.mk -------------------------------------------------------------------------------- /src/server/safs/sed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/sed.cpp -------------------------------------------------------------------------------- /src/server/safs/sed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/sed.h -------------------------------------------------------------------------------- /src/server/safs/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/service.cpp -------------------------------------------------------------------------------- /src/server/safs/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/service.h -------------------------------------------------------------------------------- /src/server/safs/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/trace.cpp -------------------------------------------------------------------------------- /src/server/safs/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/trace.h -------------------------------------------------------------------------------- /src/server/safs/upload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/upload.cpp -------------------------------------------------------------------------------- /src/server/safs/upload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/upload.h -------------------------------------------------------------------------------- /src/server/safs/var.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/var.cpp -------------------------------------------------------------------------------- /src/server/safs/var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/safs/var.h -------------------------------------------------------------------------------- /src/server/shtml/ConfigHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ConfigHandler.cpp -------------------------------------------------------------------------------- /src/server/shtml/ConfigHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ConfigHandler.h -------------------------------------------------------------------------------- /src/server/shtml/DefineHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/DefineHandler.h -------------------------------------------------------------------------------- /src/server/shtml/EchoHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/EchoHandler.cpp -------------------------------------------------------------------------------- /src/server/shtml/EchoHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/EchoHandler.h -------------------------------------------------------------------------------- /src/server/shtml/ExecHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ExecHandler.cpp -------------------------------------------------------------------------------- /src/server/shtml/ExecHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ExecHandler.h -------------------------------------------------------------------------------- /src/server/shtml/FileInfoHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/FileInfoHandler.h -------------------------------------------------------------------------------- /src/server/shtml/HeaderHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/HeaderHandler.h -------------------------------------------------------------------------------- /src/server/shtml/IncludeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/IncludeHandler.h -------------------------------------------------------------------------------- /src/server/shtml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/Makefile -------------------------------------------------------------------------------- /src/server/shtml/NSPageState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/NSPageState.cpp -------------------------------------------------------------------------------- /src/server/shtml/NSPageState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/NSPageState.h -------------------------------------------------------------------------------- /src/server/shtml/NSTagHandlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/NSTagHandlers.cpp -------------------------------------------------------------------------------- /src/server/shtml/NSTagHandlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/NSTagHandlers.h -------------------------------------------------------------------------------- /src/server/shtml/OutputBuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/OutputBuff.h -------------------------------------------------------------------------------- /src/server/shtml/PrintenvHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/PrintenvHandler.h -------------------------------------------------------------------------------- /src/server/shtml/RedirectHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/RedirectHandler.h -------------------------------------------------------------------------------- /src/server/shtml/ServletHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ServletHandler.h -------------------------------------------------------------------------------- /src/server/shtml/ShtmlCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ShtmlCache.cpp -------------------------------------------------------------------------------- /src/server/shtml/ShtmlCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ShtmlCache.h -------------------------------------------------------------------------------- /src/server/shtml/ShtmlConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ShtmlConfig.cpp -------------------------------------------------------------------------------- /src/server/shtml/ShtmlConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ShtmlConfig.h -------------------------------------------------------------------------------- /src/server/shtml/ShtmlDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ShtmlDefines.h -------------------------------------------------------------------------------- /src/server/shtml/ShtmlElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ShtmlElement.h -------------------------------------------------------------------------------- /src/server/shtml/ShtmlPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ShtmlPage.cpp -------------------------------------------------------------------------------- /src/server/shtml/ShtmlPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ShtmlPage.h -------------------------------------------------------------------------------- /src/server/shtml/ShtmlPageFnList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ShtmlPageFnList.h -------------------------------------------------------------------------------- /src/server/shtml/ShtmlPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ShtmlPlugin.cpp -------------------------------------------------------------------------------- /src/server/shtml/ShtmlSaf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ShtmlSaf.cpp -------------------------------------------------------------------------------- /src/server/shtml/ShtmlSaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ShtmlSaf.h -------------------------------------------------------------------------------- /src/server/shtml/ShtmlTagParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/ShtmlTagParser.h -------------------------------------------------------------------------------- /src/server/shtml/TextHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/TextHandler.cpp -------------------------------------------------------------------------------- /src/server/shtml/TextHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/TextHandler.h -------------------------------------------------------------------------------- /src/server/shtml/dbtShtml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/dbtShtml.h -------------------------------------------------------------------------------- /src/server/shtml/shtmlobjs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/shtml/shtmlobjs.mk -------------------------------------------------------------------------------- /src/server/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/utils/Makefile -------------------------------------------------------------------------------- /src/server/utils/ServerControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/utils/ServerControl.cpp -------------------------------------------------------------------------------- /src/server/utils/ServerControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/utils/ServerControl.h -------------------------------------------------------------------------------- /src/server/utils/filedb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/utils/filedb.cpp -------------------------------------------------------------------------------- /src/server/utils/makefile.set2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/utils/makefile.set2 -------------------------------------------------------------------------------- /src/server/utils/parsexml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/utils/parsexml.cpp -------------------------------------------------------------------------------- /src/server/utils/true/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/utils/true/Makefile -------------------------------------------------------------------------------- /src/server/utils/true/true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/utils/true/true.c -------------------------------------------------------------------------------- /src/server/uxwdog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/Makefile -------------------------------------------------------------------------------- /src/server/uxwdog/watchdog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/watchdog.cpp -------------------------------------------------------------------------------- /src/server/uxwdog/wdbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/wdbind.c -------------------------------------------------------------------------------- /src/server/uxwdog/wdbind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/wdbind.h -------------------------------------------------------------------------------- /src/server/uxwdog/wdconf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/wdconf.cpp -------------------------------------------------------------------------------- /src/server/uxwdog/wdconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/wdconf.h -------------------------------------------------------------------------------- /src/server/uxwdog/wdlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/wdlog.cpp -------------------------------------------------------------------------------- /src/server/uxwdog/wdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/wdlog.h -------------------------------------------------------------------------------- /src/server/uxwdog/wdlsmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/wdlsmgr.cpp -------------------------------------------------------------------------------- /src/server/uxwdog/wdlsmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/wdlsmgr.h -------------------------------------------------------------------------------- /src/server/uxwdog/wdpwd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/wdpwd.cpp -------------------------------------------------------------------------------- /src/server/uxwdog/wdreq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/wdreq.cpp -------------------------------------------------------------------------------- /src/server/uxwdog/wdsignals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/wdsignals.cpp -------------------------------------------------------------------------------- /src/server/uxwdog/wdsignals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/wdsignals.h -------------------------------------------------------------------------------- /src/server/uxwdog/wdsmf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/wdsmf.cpp -------------------------------------------------------------------------------- /src/server/uxwdog/wdsmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/wdsmf.h -------------------------------------------------------------------------------- /src/server/uxwdog/wdutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/wdutil.cpp -------------------------------------------------------------------------------- /src/server/uxwdog/wdutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/uxwdog/wdutil.h -------------------------------------------------------------------------------- /src/server/webservd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/webservd/Makefile -------------------------------------------------------------------------------- /src/server/webservd/dbthttpdsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/webservd/dbthttpdsrc.h -------------------------------------------------------------------------------- /src/server/webservd/key.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/webservd/key.ico -------------------------------------------------------------------------------- /src/server/webservd/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/webservd/main.cpp -------------------------------------------------------------------------------- /src/server/webservd/ntmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/webservd/ntmain.cpp -------------------------------------------------------------------------------- /src/server/webservd/password.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/webservd/password.rc -------------------------------------------------------------------------------- /src/server/webservd/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/server/webservd/resource.h -------------------------------------------------------------------------------- /src/support/Cld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/Cld/Makefile -------------------------------------------------------------------------------- /src/support/Cld/libCld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/Cld/libCld.c -------------------------------------------------------------------------------- /src/support/Cld/libCld.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/Cld/libCld.spec -------------------------------------------------------------------------------- /src/support/Cld/libCld.versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/Cld/libCld.versions -------------------------------------------------------------------------------- /src/support/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/Makefile -------------------------------------------------------------------------------- /src/support/NsprWrap/LongLong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/LongLong.cpp -------------------------------------------------------------------------------- /src/support/NsprWrap/LongLong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/LongLong.h -------------------------------------------------------------------------------- /src/support/NsprWrap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/Makefile -------------------------------------------------------------------------------- /src/support/NsprWrap/NsprBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/NsprBuffer.h -------------------------------------------------------------------------------- /src/support/NsprWrap/NsprError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/NsprError.cpp -------------------------------------------------------------------------------- /src/support/NsprWrap/NsprError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/NsprError.h -------------------------------------------------------------------------------- /src/support/NsprWrap/NsprSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/NsprSink.cpp -------------------------------------------------------------------------------- /src/support/NsprWrap/NsprSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/NsprSink.h -------------------------------------------------------------------------------- /src/support/NsprWrap/NsprThunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/NsprThunk.cpp -------------------------------------------------------------------------------- /src/support/NsprWrap/NsprThunk.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/NsprThunk.rc -------------------------------------------------------------------------------- /src/support/NsprWrap/PlcThunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/PlcThunk.cpp -------------------------------------------------------------------------------- /src/support/NsprWrap/PlcThunk.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/PlcThunk.rc -------------------------------------------------------------------------------- /src/support/NsprWrap/ProcessLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/ProcessLock.h -------------------------------------------------------------------------------- /src/support/NsprWrap/Sleeper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/Sleeper.cpp -------------------------------------------------------------------------------- /src/support/NsprWrap/Sleeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/Sleeper.h -------------------------------------------------------------------------------- /src/support/NsprWrap/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/Thread.cpp -------------------------------------------------------------------------------- /src/support/NsprWrap/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/Thread.h -------------------------------------------------------------------------------- /src/support/NsprWrap/ThreadSafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/ThreadSafe.h -------------------------------------------------------------------------------- /src/support/NsprWrap/atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/atomic.cpp -------------------------------------------------------------------------------- /src/support/NsprWrap/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/NsprWrap/atomic.h -------------------------------------------------------------------------------- /src/support/ares/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/ares/Makefile -------------------------------------------------------------------------------- /src/support/ares/README.ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/ares/README.ipv6 -------------------------------------------------------------------------------- /src/support/ares/arapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/ares/arapi.cpp -------------------------------------------------------------------------------- /src/support/ares/arapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/ares/arapi.h -------------------------------------------------------------------------------- /src/support/ares/arlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/ares/arlib.cpp -------------------------------------------------------------------------------- /src/support/ares/arlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/ares/arlib.h -------------------------------------------------------------------------------- /src/support/ares/dnstest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/ares/dnstest.cpp -------------------------------------------------------------------------------- /src/support/ares/libares3.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/ares/libares3.spec -------------------------------------------------------------------------------- /src/support/ares/libares3.versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/ares/libares3.versions -------------------------------------------------------------------------------- /src/support/filecache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/filecache/Makefile -------------------------------------------------------------------------------- /src/support/filecache/alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/filecache/alloc.cpp -------------------------------------------------------------------------------- /src/support/filecache/filecopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/filecache/filecopy.cpp -------------------------------------------------------------------------------- /src/support/filecache/fileio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/filecache/fileio.cpp -------------------------------------------------------------------------------- /src/support/filecache/filename.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/filecache/filename.cpp -------------------------------------------------------------------------------- /src/support/filecache/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/filecache/init.cpp -------------------------------------------------------------------------------- /src/support/filecache/instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/filecache/instance.cpp -------------------------------------------------------------------------------- /src/support/filecache/libnsfc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/filecache/libnsfc.spec -------------------------------------------------------------------------------- /src/support/filecache/md_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/filecache/md_unix.cpp -------------------------------------------------------------------------------- /src/support/filecache/md_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/filecache/md_unix.h -------------------------------------------------------------------------------- /src/support/filecache/md_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/filecache/md_win32.cpp -------------------------------------------------------------------------------- /src/support/filecache/md_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/filecache/md_win32.h -------------------------------------------------------------------------------- /src/support/filecache/nsfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/filecache/nsfc.h -------------------------------------------------------------------------------- /src/support/filecache/nsfc_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/filecache/nsfc_pvt.h -------------------------------------------------------------------------------- /src/support/libdbm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/Makefile -------------------------------------------------------------------------------- /src/support/libdbm/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/cdefs.h -------------------------------------------------------------------------------- /src/support/libdbm/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/db.c -------------------------------------------------------------------------------- /src/support/libdbm/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/extern.h -------------------------------------------------------------------------------- /src/support/libdbm/h_bigkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/h_bigkey.c -------------------------------------------------------------------------------- /src/support/libdbm/h_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/h_func.c -------------------------------------------------------------------------------- /src/support/libdbm/h_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/h_lock.c -------------------------------------------------------------------------------- /src/support/libdbm/h_log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/h_log2.c -------------------------------------------------------------------------------- /src/support/libdbm/h_page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/h_page.c -------------------------------------------------------------------------------- /src/support/libdbm/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/hash.c -------------------------------------------------------------------------------- /src/support/libdbm/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/hash.h -------------------------------------------------------------------------------- /src/support/libdbm/hash_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/hash_buf.c -------------------------------------------------------------------------------- /src/support/libdbm/hsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/hsearch.c -------------------------------------------------------------------------------- /src/support/libdbm/hsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/hsearch.h -------------------------------------------------------------------------------- /src/support/libdbm/liblibdbm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/liblibdbm.spec -------------------------------------------------------------------------------- /src/support/libdbm/makefile.win: -------------------------------------------------------------------------------- 1 | !include $(MOZ_SRC)\ns\config\rules.mak 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/support/libdbm/mcom_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/mcom_db.h -------------------------------------------------------------------------------- /src/support/libdbm/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/memmove.c -------------------------------------------------------------------------------- /src/support/libdbm/mktemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/mktemp.c -------------------------------------------------------------------------------- /src/support/libdbm/mpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/mpool.h -------------------------------------------------------------------------------- /src/support/libdbm/ndbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/ndbm.c -------------------------------------------------------------------------------- /src/support/libdbm/ndbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/ndbm.h -------------------------------------------------------------------------------- /src/support/libdbm/nsres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/nsres.c -------------------------------------------------------------------------------- /src/support/libdbm/nsres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/nsres.h -------------------------------------------------------------------------------- /src/support/libdbm/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/page.h -------------------------------------------------------------------------------- /src/support/libdbm/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/queue.h -------------------------------------------------------------------------------- /src/support/libdbm/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/search.h -------------------------------------------------------------------------------- /src/support/libdbm/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/snprintf.c -------------------------------------------------------------------------------- /src/support/libdbm/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libdbm/strerror.c -------------------------------------------------------------------------------- /src/support/libxsd2cpp/Bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libxsd2cpp/Bool.cpp -------------------------------------------------------------------------------- /src/support/libxsd2cpp/Bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libxsd2cpp/Bool.h -------------------------------------------------------------------------------- /src/support/libxsd2cpp/CString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libxsd2cpp/CString.cpp -------------------------------------------------------------------------------- /src/support/libxsd2cpp/CString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libxsd2cpp/CString.h -------------------------------------------------------------------------------- /src/support/libxsd2cpp/Complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libxsd2cpp/Complex.cpp -------------------------------------------------------------------------------- /src/support/libxsd2cpp/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libxsd2cpp/Complex.h -------------------------------------------------------------------------------- /src/support/libxsd2cpp/Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libxsd2cpp/Element.h -------------------------------------------------------------------------------- /src/support/libxsd2cpp/Integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libxsd2cpp/Integer.cpp -------------------------------------------------------------------------------- /src/support/libxsd2cpp/Integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libxsd2cpp/Integer.h -------------------------------------------------------------------------------- /src/support/libxsd2cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libxsd2cpp/Makefile -------------------------------------------------------------------------------- /src/support/libxsd2cpp/Simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libxsd2cpp/Simple.h -------------------------------------------------------------------------------- /src/support/libxsd2cpp/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libxsd2cpp/String.cpp -------------------------------------------------------------------------------- /src/support/libxsd2cpp/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/libxsd2cpp/String.h -------------------------------------------------------------------------------- /src/support/support/BaseCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/BaseCache.cpp -------------------------------------------------------------------------------- /src/support/support/BaseCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/BaseCache.h -------------------------------------------------------------------------------- /src/support/support/CacheConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/CacheConfig.h -------------------------------------------------------------------------------- /src/support/support/CacheStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/CacheStats.h -------------------------------------------------------------------------------- /src/support/support/DynBuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/DynBuf.cpp -------------------------------------------------------------------------------- /src/support/support/DynBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/DynBuf.h -------------------------------------------------------------------------------- /src/support/support/GenericList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/GenericList.h -------------------------------------------------------------------------------- /src/support/support/GenericQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/GenericQueue.h -------------------------------------------------------------------------------- /src/support/support/LinkedList.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/LinkedList.hh -------------------------------------------------------------------------------- /src/support/support/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/Makefile -------------------------------------------------------------------------------- /src/support/support/NSColString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/NSColString.h -------------------------------------------------------------------------------- /src/support/support/NSString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/NSString.cpp -------------------------------------------------------------------------------- /src/support/support/NSString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/NSString.h -------------------------------------------------------------------------------- /src/support/support/NSTokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/NSTokenizer.h -------------------------------------------------------------------------------- /src/support/support/PSQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/PSQueue.h -------------------------------------------------------------------------------- /src/support/support/SimpleHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/SimpleHash.cpp -------------------------------------------------------------------------------- /src/support/support/SimpleHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/SimpleHash.h -------------------------------------------------------------------------------- /src/support/support/nsmalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/nsmalloc.cpp -------------------------------------------------------------------------------- /src/support/support/nsmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/nsmalloc.h -------------------------------------------------------------------------------- /src/support/support/nspool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/nspool.cpp -------------------------------------------------------------------------------- /src/support/support/nspool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/nspool.h -------------------------------------------------------------------------------- /src/support/support/nsshexp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/nsshexp.cpp -------------------------------------------------------------------------------- /src/support/support/nsshexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/nsshexp.h -------------------------------------------------------------------------------- /src/support/support/objectlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/objectlist.h -------------------------------------------------------------------------------- /src/support/support/prime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/prime.h -------------------------------------------------------------------------------- /src/support/support/stringvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/stringvalue.h -------------------------------------------------------------------------------- /src/support/support/urimapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/urimapper.cpp -------------------------------------------------------------------------------- /src/support/support/urimapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/urimapper.h -------------------------------------------------------------------------------- /src/support/support/xmloutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/xmloutput.cpp -------------------------------------------------------------------------------- /src/support/support/xmloutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/support/xmloutput.h -------------------------------------------------------------------------------- /src/support/threadpool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/threadpool/Makefile -------------------------------------------------------------------------------- /src/support/threadpool/nstp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/threadpool/nstp.cpp -------------------------------------------------------------------------------- /src/support/threadpool/nstp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/threadpool/nstp.h -------------------------------------------------------------------------------- /src/support/threadpool/nstp_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/threadpool/nstp_pvt.h -------------------------------------------------------------------------------- /src/support/time/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/time/Makefile -------------------------------------------------------------------------------- /src/support/time/clockthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/time/clockthread.cpp -------------------------------------------------------------------------------- /src/support/time/clockthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/time/clockthread.h -------------------------------------------------------------------------------- /src/support/time/compare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/time/compare.cpp -------------------------------------------------------------------------------- /src/support/time/libnstime.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/time/libnstime.spec -------------------------------------------------------------------------------- /src/support/time/localgmtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/time/localgmtime.cpp -------------------------------------------------------------------------------- /src/support/time/nstime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/time/nstime.cpp -------------------------------------------------------------------------------- /src/support/time/nstime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/time/nstime.h -------------------------------------------------------------------------------- /src/support/time/xp_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/time/xp_time.cpp -------------------------------------------------------------------------------- /src/support/xp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/Makefile -------------------------------------------------------------------------------- /src/support/xp/_xpatomic_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/_xpatomic_gcc.h -------------------------------------------------------------------------------- /src/support/xp/_xpatomic_hppa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/_xpatomic_hppa.h -------------------------------------------------------------------------------- /src/support/xp/_xpatomic_locked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/_xpatomic_locked.h -------------------------------------------------------------------------------- /src/support/xp/_xpatomic_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/_xpatomic_msvc.h -------------------------------------------------------------------------------- /src/support/xp/_xpatomic_omp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/_xpatomic_omp.h -------------------------------------------------------------------------------- /src/support/xp/_xpatomic_pr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/_xpatomic_pr.h -------------------------------------------------------------------------------- /src/support/xp/_xpatomic_sun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/_xpatomic_sun.h -------------------------------------------------------------------------------- /src/support/xp/_xpsynch_pr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/_xpsynch_pr.h -------------------------------------------------------------------------------- /src/support/xp/_xpsynch_sunos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/_xpsynch_sunos.h -------------------------------------------------------------------------------- /src/support/xp/amd64/atomic.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/amd64/atomic.S -------------------------------------------------------------------------------- /src/support/xp/atomic_asm_weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/atomic_asm_weak.h -------------------------------------------------------------------------------- /src/support/xp/i386/atomic.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/i386/atomic.S -------------------------------------------------------------------------------- /src/support/xp/sparc/atomic.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/sparc/atomic.S -------------------------------------------------------------------------------- /src/support/xp/sparcv9/atomic.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/sparcv9/atomic.S -------------------------------------------------------------------------------- /src/support/xp/xp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/xp.h -------------------------------------------------------------------------------- /src/support/xp/xpatomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/xpatomic.cpp -------------------------------------------------------------------------------- /src/support/xp/xpatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/xpatomic.h -------------------------------------------------------------------------------- /src/support/xp/xpplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/xpplatform.h -------------------------------------------------------------------------------- /src/support/xp/xpsynch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/xpsynch.h -------------------------------------------------------------------------------- /src/support/xp/xptests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/xptests.cpp -------------------------------------------------------------------------------- /src/support/xp/xptime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/xptime.h -------------------------------------------------------------------------------- /src/support/xp/xptypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/xptypes.h -------------------------------------------------------------------------------- /src/support/xp/xpunit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/xpunit.cpp -------------------------------------------------------------------------------- /src/support/xp/xpunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/support/xp/xpunit.h -------------------------------------------------------------------------------- /src/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/Makefile -------------------------------------------------------------------------------- /src/tools/bin2c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/bin2c/Makefile -------------------------------------------------------------------------------- /src/tools/bin2c/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/bin2c/bin2c.c -------------------------------------------------------------------------------- /src/tools/httptest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/Makefile -------------------------------------------------------------------------------- /src/tools/httptest/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/basic.cpp -------------------------------------------------------------------------------- /src/tools/httptest/dynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/dynamic.cpp -------------------------------------------------------------------------------- /src/tools/httptest/dynamicmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/dynamicmain.cpp -------------------------------------------------------------------------------- /src/tools/httptest/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/engine.cpp -------------------------------------------------------------------------------- /src/tools/httptest/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/engine.h -------------------------------------------------------------------------------- /src/tools/httptest/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/http.cpp -------------------------------------------------------------------------------- /src/tools/httptest/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/http.h -------------------------------------------------------------------------------- /src/tools/httptest/http11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/http11.cpp -------------------------------------------------------------------------------- /src/tools/httptest/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/log.cpp -------------------------------------------------------------------------------- /src/tools/httptest/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/log.h -------------------------------------------------------------------------------- /src/tools/httptest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/main.cpp -------------------------------------------------------------------------------- /src/tools/httptest/negative.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/negative.cpp -------------------------------------------------------------------------------- /src/tools/httptest/nscperror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/nscperror.cpp -------------------------------------------------------------------------------- /src/tools/httptest/ptrlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/ptrlist.h -------------------------------------------------------------------------------- /src/tools/httptest/regex_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/regex_entry.cpp -------------------------------------------------------------------------------- /src/tools/httptest/regex_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/regex_entry.h -------------------------------------------------------------------------------- /src/tools/httptest/regex_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/regex_list.cpp -------------------------------------------------------------------------------- /src/tools/httptest/regex_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/regex_list.h -------------------------------------------------------------------------------- /src/tools/httptest/regex_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/regex_string.h -------------------------------------------------------------------------------- /src/tools/httptest/request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/request.cpp -------------------------------------------------------------------------------- /src/tools/httptest/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/request.h -------------------------------------------------------------------------------- /src/tools/httptest/response.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/response.cpp -------------------------------------------------------------------------------- /src/tools/httptest/response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/response.h -------------------------------------------------------------------------------- /src/tools/httptest/test1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/test1.cpp -------------------------------------------------------------------------------- /src/tools/httptest/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/tests.cpp -------------------------------------------------------------------------------- /src/tools/httptest/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/tests.h -------------------------------------------------------------------------------- /src/tools/httptest/testthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/testthread.h -------------------------------------------------------------------------------- /src/tools/httptest/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/utils.cpp -------------------------------------------------------------------------------- /src/tools/httptest/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/httptest/utils.h -------------------------------------------------------------------------------- /src/tools/txt2c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/txt2c/Makefile -------------------------------------------------------------------------------- /src/tools/txt2c/txt2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/src/tools/txt2c/txt2c.c -------------------------------------------------------------------------------- /templates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/Makefile -------------------------------------------------------------------------------- /templates/Makefile.tarball: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/Makefile.tarball -------------------------------------------------------------------------------- /templates/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/README -------------------------------------------------------------------------------- /templates/bin/reconfig.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/bin/reconfig.template -------------------------------------------------------------------------------- /templates/bin/restart.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/bin/restart.template -------------------------------------------------------------------------------- /templates/bin/rotate.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/bin/rotate.template -------------------------------------------------------------------------------- /templates/bin/startserv.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/bin/startserv.template -------------------------------------------------------------------------------- /templates/bin/stopserv.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/bin/stopserv.template -------------------------------------------------------------------------------- /templates/config/keyfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/config/keyfile.template -------------------------------------------------------------------------------- /templates/config/obj.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/config/obj.conf.template -------------------------------------------------------------------------------- /templates/create-instance.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/create-instance.template -------------------------------------------------------------------------------- /templates/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/docs/index.html -------------------------------------------------------------------------------- /templates/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/icons/back.png -------------------------------------------------------------------------------- /templates/icons/binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/icons/binary.png -------------------------------------------------------------------------------- /templates/icons/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/icons/blank.png -------------------------------------------------------------------------------- /templates/icons/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/icons/c.png -------------------------------------------------------------------------------- /templates/icons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/icons/image.png -------------------------------------------------------------------------------- /templates/icons/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/icons/menu.png -------------------------------------------------------------------------------- /templates/icons/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/icons/movie.png -------------------------------------------------------------------------------- /templates/icons/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/icons/sound.png -------------------------------------------------------------------------------- /templates/icons/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/icons/text.png -------------------------------------------------------------------------------- /templates/icons/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/icons/unknown.png -------------------------------------------------------------------------------- /templates/lib/wsenv.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/lib/wsenv.template -------------------------------------------------------------------------------- /templates/post-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/post-install -------------------------------------------------------------------------------- /templates/replace_vars.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/templates/replace_vars.pl -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvirkki/heliod/HEAD/test/Makefile --------------------------------------------------------------------------------