Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 Jul 2013 15:44:11 +0000 (UTC)
From:      William Grzybowski <wg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r323239 - in head/www/red5: . files
Message-ID:  <201307181544.r6IFiBXE073107@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: wg
Date: Thu Jul 18 15:44:11 2013
New Revision: 323239
URL: http://svnweb.freebsd.org/changeset/ports/323239

Log:
  www/red5: update to 1.0.1
  
  - Update to 1.0.1
  - Trim Makefile header
  
  Changes: http://red5.googlecode.com/svn/doc/trunk/changelog.txt
  
  PR:		ports/180609
  Submitted by:	joris.dedieu gmail.com (maintainer)

Modified:
  head/www/red5/Makefile
  head/www/red5/distinfo
  head/www/red5/files/red5.in
  head/www/red5/pkg-plist

Modified: head/www/red5/Makefile
==============================================================================
--- head/www/red5/Makefile	Thu Jul 18 15:36:01 2013	(r323238)
+++ head/www/red5/Makefile	Thu Jul 18 15:44:11 2013	(r323239)
@@ -1,15 +1,9 @@
-# New ports collection makefile for:    devel/red5
-# Date created:         14 March 2008
-# Whom:                 wenheping@gmail.com
-#
 # $FreeBSD$
-#
 
 PORTNAME=	red5
-PORTVERSION=	0.9.1
-PORTREVISION=	1
+PORTVERSION=	1.0.1
 CATEGORIES=	www java
-MASTER_SITES=	http://trac.red5.org/downloads/0_9/ \
+MASTER_SITES=	http://www.red5.org/downloads/red5/1_0_1/ \
 		http://red5.rmdir.fr/
 
 MAINTAINER=	joris.dedieu@gmail.com
@@ -18,6 +12,7 @@ COMMENT=	Red5 is an Open Source Flash Se
 USE_JAVA=	yes
 NO_BUILD=	yes
 USE_RC_SUBR=	red5
+WRKSRC=         ${WRKDIR}/red5-server-1.0
 
 RED5_USER?=	${WWWOWN}
 RED5_GRP?=	${WWWGRP}
@@ -26,39 +21,38 @@ RED5_HOME?=	${PREFIX}/${PORTNAME}
 SUB_LIST+=	RED5_USER=${RED5_USER} RED5_HOME=${RED5_HOME}
 
 post-patch:
-	@${REINPLACE_CMD} -e 's/0.0.0.0/127.0.0.1/' ${WRKSRC}/conf/red5.properties
+	@${REINPLACE_CMD} -e 's/host=0.0.0.0/host=127.0.0.1/' ${WRKSRC}/conf/red5.properties
+	@${RM} ${WRKSRC}/conf/red5.properties.bak
 	(cd ${WRKSRC}/conf \
-		&& for file in `find . -type f` ; \
-		   do	${MV} $$file $$file.sample ; \
+		&& for conf in `find . -type f` ; \
+		   do	${MV} $$conf $$conf.sample ; \
 		done)
-.for webappssubdir in installer root
+.for webappssubdir in installer root live vod
 	(cd ${WRKSRC}/webapps/${webappssubdir}/WEB-INF \
-		&& for file in * ; \
-		   do	${MV} $$file $$file.sample ; \
+		&& for conf in * ; \
+		   do	${MV} $$conf $$conf.sample ; \
 		done)
 .endfor
+		${MV} ${WRKSRC}/webapps/red5-default.xml ${WRKSRC}/webapps/red5-default.xml.sample
 
 do-install:
-	${MKDIR} ${RED5_HOME}/conf ${RED5_HOME}/lib ${RED5_HOME}/webapps ${RED5_HOME}/log
-	${INSTALL} ${WRKSRC}/boot.jar ${RED5_HOME}
-	${INSTALL} ${WRKSRC}/red5.jar ${RED5_HOME}
+	${MKDIR} ${RED5_HOME}/conf ${RED5_HOME}/lib ${RED5_HOME}/webapps ${RED5_HOME}/log ${RED5_HOME}/plugins
+	${INSTALL} ${WRKSRC}/red5-server-1.0-bootstrap.jar ${RED5_HOME}
+	${INSTALL} ${WRKSRC}/red5-server-1.0.jar ${RED5_HOME}
 	(cd ${WRKSRC}/conf && ${COPYTREE_SHARE} \* ${RED5_HOME}/conf)
 	(cd ${WRKSRC}/lib && ${COPYTREE_SHARE} \* ${RED5_HOME}/lib)
 	(cd ${WRKSRC}/webapps && ${COPYTREE_SHARE} \* ${RED5_HOME}/webapps)
+	(cd ${WRKSRC}/plugins && ${COPYTREE_SHARE} \* ${RED5_HOME}/plugins)
 	${CHOWN} -R  ${RED5_USER}:${RED5_GRP} ${RED5_HOME}
 
 post-install:
-.if !defined(NOPORTDOCS)
-	${MKDIR} ${DOCSDIR}
-	(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${DOCSDIR})
-.endif
 	@${ECHO_CMD} '@exec ${CHOWN} -R ${RED5_USER}:${RED5_GRP} ${RED5_HOME}' \
 		>> ${TMPPLIST}
-	for file in `find ${RED5_HOME}/conf -type f -regex '.*\.sample$$'` ; \
-	  do	[ -f $${file%.sample} ] || ${CP} -p $$file $${file%.sample} ; \
+	for conf in `find ${RED5_HOME}/conf -type f -regex '.*\.sample$$'` ; \
+	  do	[ -f $${conf%.sample} ] || ${CP} -p $$conf $${conf%.sample} ; \
 	  done
-	for file in ${RED5_HOME}/webapps/root/WEB-INF/*.sample ${RED5_HOME}/webapps/installer/WEB-INF/*.sample ; \
-	  do	[ -f $${file%.sample} ] || ${CP} -p $$file $${file%.sample} ; \
+	for conf in ${RED5_HOME}/webapps/root/WEB-INF/*.sample ${RED5_HOME}/webapps/installer/WEB-INF/*.sample ${RED5_HOME}/webapps/red5-default.xml.sample; \
+	  do	[ -f $${conf%.sample} ] || ${CP} -p $$conf $${conf%.sample} ; \
 	  done
 
 .include <bsd.port.mk>

Modified: head/www/red5/distinfo
==============================================================================
--- head/www/red5/distinfo	Thu Jul 18 15:36:01 2013	(r323238)
+++ head/www/red5/distinfo	Thu Jul 18 15:44:11 2013	(r323239)
@@ -1,2 +1,2 @@
-SHA256 (red5-0.9.1.tar.gz) = 71290b8b22db8c267752be432126a89e4105809d16c9bfc84d6d1e7f52438efd
-SIZE (red5-0.9.1.tar.gz) = 35466436
+SHA256 (red5-1.0.1.tar.gz) = d4c48cbb1bb5867a6b98be900034dc13008c9d0169bf3750a0697be4c86aa9d9
+SIZE (red5-1.0.1.tar.gz) = 51285531

Modified: head/www/red5/files/red5.in
==============================================================================
--- head/www/red5/files/red5.in	Thu Jul 18 15:36:01 2013	(r323238)
+++ head/www/red5/files/red5.in	Thu Jul 18 15:44:11 2013	(r323239)
@@ -30,11 +30,11 @@
 # red5_java_opts (str):
 #   Set to "" by default.
 #   Java VM args to use.
-#   Eg: red5_java_opts="-Xrs -Xms512M -Xmx1024M -Xss128K -XX:NewSize=256m -XX:SurvivorRatio=16 \
-#			-XX:MinHeapFreeRatio=20 -XX:+AggressiveHeap -XX:+ExplicitGCInvokesConcurrent \
-#			-XX:+UseConcMarkSweepGC -Dsun.rmi.dgc.client.gcInterval=990000 \
-#			-Dsun.rmi.dgc.server.gcInterval=990000 
-#			-Djava.net.preferIPv4Stack=true -Xverify:none"
+#   Eg: red5_java_opts="-Xmx768m -Xms256 -Xmn512m -Xss256k -XX:+AggressiveOpts \
+#	-XX:+DisableExpl    icitGC -XX:ParallelGCThreads=4 -XX:+UseConcMarkSweepGC \
+#	-XX:+UseParNewGC -XX:SurvivorRa    tio=16 -XX:TargetSurvivorRatio=90 \
+#	-XX:MaxTenuringThreshold=31 -Djava.net.preferIPv4Sta    ck=true
+#
 #
 # red5_user (str)
 #   Set to %%RED5_USER%% by default.
@@ -76,7 +76,7 @@ red5_stop_timeout="${red5_stop_timeout:-
 red5_opts="${red5_logging_opts} ${red5_security_opts} ${red5_java_opts}"
 red5_stop_opts="-Djavax.net.ssl.keyStore=${red5_home}/conf/keystore.jmx \
 		-Djavax.net.ssl.keyStorePassword=password"
-red5_classpath="${red5_home}/boot.jar:${red5_home}/conf:${CLASSPATH}"
+red5_classpath="${red5_home}/red5-server-1.0-bootstrap.jar:${red5_home}/conf:${CLASSPATH}"
 
 red5_start_cmd="${java_command} ${red5_jython_opt} -Dred5.root=${red5_home} \
 		${red5_opts} -cp ${red5_classpath} ${red5_mainclass}"

Modified: head/www/red5/pkg-plist
==============================================================================
--- head/www/red5/pkg-plist	Thu Jul 18 15:36:01 2013	(r323238)
+++ head/www/red5/pkg-plist	Thu Jul 18 15:44:11 2013	(r323239)
@@ -1,195 +1,163 @@
 @stopdaemon red5
-red5/boot.jar
-@unexec cmp -s %D/red5/conf/Red5_SMF.xml.sample %D/red5/conf/Red5_SMF.xml && rm -f %D/red5/conf/Red5_SMF.xml || true 2>/dev/null
-red5/conf/Red5_SMF.xml.sample
-@exec [ -f %D/red5/conf/Red5_SMF.xml ] || cp -p %D/red5/conf/Red5_SMF.xml.sample %D/red5/conf/Red5_SMF.xml
-@unexec cmp -s %D/red5/conf/access.properties.sample %D/red5/conf/access.properties && rm -f %D/red5/conf/access.properties || true 2>/dev/null
+@unexec cmp -s %D/red5/conf/access.properties %D/red5/conf/access.properties.sample && rm -f %D/red5/conf/access.properties || true 2>/dev/null
 red5/conf/access.properties.sample
-@exec [ -f %D/red5/conf/access.properties ] || cp -p %D/red5/conf/access.properties.sample %D/red5/conf/access.properties
-@unexec cmp -s %D/red5/conf/build_standalone.properties.sample %D/red5/conf/build_standalone.properties && rm -f %D/red5/conf/build_standalone.properties || true 2>/dev/null
+@exec [ -f %D/red5/conf/access.properties ] || cp -p %D/red5/conf/access.properties.sample %D/red5/red5/conf/access.properties
+@unexec cmp -s %D/red5/conf/build_standalone.properties %D/red5/conf/build_standalone.properties.sample && rm -f %D/red5/conf/build_standalone.properties || true 2>/dev/null
 red5/conf/build_standalone.properties.sample
-@exec [ -f %D/red5/conf/build_standalone.properties ] || cp -p %D/red5/conf/build_standalone.properties.sample %D/red5/conf/build_standalone.properties
-@unexec cmp -s %D/red5/conf/catalina.policy.sample %D/red5/conf/catalina.policy && rm -f %D/red5/conf/catalina.policy || true 2>/dev/null
+@exec [ -f %D/red5/conf/build_standalone.properties ] || cp -p %D/red5/conf/build_standalone.properties.sample %D/red5/red5/conf/build_standalone.properties
+@unexec cmp -s %D/red5/conf/catalina.policy %D/red5/conf/catalina.policy.sample && rm -f %D/red5/conf/catalina.policy || true 2>/dev/null
 red5/conf/catalina.policy.sample
-@exec [ -f %D/red5/conf/catalina.policy ] || cp -p %D/red5/conf/catalina.policy.sample %D/red5/conf/catalina.policy
-@unexec cmp -s %D/red5/conf/context.xml.sample %D/red5/conf/context.xml && rm -f %D/red5/conf/context.xml || true 2>/dev/null
+@exec [ -f %D/red5/conf/catalina.policy ] || cp -p %D/red5/conf/catalina.policy.sample %D/red5/red5/conf/catalina.policy
+@unexec cmp -s %D/red5/conf/context.xml %D/red5/conf/context.xml.sample && rm -f %D/red5/conf/context.xml || true 2>/dev/null
 red5/conf/context.xml.sample
-@exec [ -f %D/red5/conf/context.xml ] || cp -p %D/red5/conf/context.xml.sample %D/red5/conf/context.xml
-@unexec cmp -s %D/red5/conf/ehcache.xml.sample %D/red5/conf/ehcache.xml && rm -f %D/red5/conf/ehcache.xml || true 2>/dev/null
+@exec [ -f %D/red5/conf/context.xml ] || cp -p %D/red5/conf/context.xml.sample %D/red5/red5/conf/context.xml
+@unexec cmp -s %D/red5/conf/ehcache.xml %D/red5/conf/ehcache.xml.sample && rm -f %D/red5/conf/ehcache.xml || true 2>/dev/null
 red5/conf/ehcache.xml.sample
-@exec [ -f %D/red5/conf/ehcache.xml ] || cp -p %D/red5/conf/ehcache.xml.sample %D/red5/conf/ehcache.xml
-@unexec cmp -s %D/red5/conf/keystore.sample %D/red5/conf/keystore && rm -f %D/red5/conf/keystore || true 2>/dev/null
-red5/conf/keystore.sample
-@exec [ -f %D/red5/conf/keystore ] || cp -p %D/red5/conf/keystore.sample %D/red5/conf/keystore
-@unexec cmp -s %D/red5/conf/keystore.jmx.sample %D/red5/conf/keystore.jmx && rm -f %D/red5/conf/keystore.jmx || true 2>/dev/null
+@exec [ -f %D/red5/conf/ehcache.xml ] || cp -p %D/red5/conf/ehcache.xml.sample %D/red5/red5/conf/ehcache.xml
+@unexec cmp -s %D/red5/conf/jee-container.xml %D/red5/conf/jee-container.xml.sample && rm -f %D/red5/conf/jee-container.xml || true 2>/dev/null
+red5/conf/jee-container.xml.sample
+@exec [ -f %D/red5/conf/jee-container.xml ] || cp -p %D/red5/conf/jee-container.xml.sample %D/red5/red5/conf/jee-container.xml
+@unexec cmp -s %D/red5/conf/keystore.jmx %D/red5/conf/keystore.jmx.sample && rm -f %D/red5/conf/keystore.jmx || true 2>/dev/null
 red5/conf/keystore.jmx.sample
-@exec [ -f %D/red5/conf/keystore.jmx ] || cp -p %D/red5/conf/keystore.jmx.sample %D/red5/conf/keystore.jmx
-@unexec cmp -s %D/red5/conf/log4j.properties.sample %D/red5/conf/log4j.properties && rm -f %D/red5/conf/log4j.properties || true 2>/dev/null
-red5/conf/log4j.properties.sample
-@exec [ -f %D/red5/conf/log4j.properties ] || cp -p %D/red5/conf/log4j.properties.sample %D/red5/conf/log4j.properties
-@unexec cmp -s %D/red5/conf/logback.xml.sample %D/red5/conf/logback.xml && rm -f %D/red5/conf/logback.xml || true 2>/dev/null
+@exec [ -f %D/red5/conf/keystore.jmx ] || cp -p %D/red5/conf/keystore.jmx.sample %D/red5/red5/conf/keystore.jmx
+@unexec cmp -s %D/red5/conf/logback.xml %D/red5/conf/logback.xml.sample && rm -f %D/red5/conf/logback.xml || true 2>/dev/null
 red5/conf/logback.xml.sample
-@exec [ -f %D/red5/conf/logback.xml ] || cp -p %D/red5/conf/logback.xml.sample %D/red5/conf/logback.xml
-@unexec cmp -s %D/red5/conf/password.properties.sample %D/red5/conf/password.properties && rm -f %D/red5/conf/password.properties || true 2>/dev/null
+@exec [ -f %D/red5/conf/logback.xml ] || cp -p %D/red5/conf/logback.xml.sample %D/red5/red5/conf/logback.xml
+@unexec cmp -s %D/red5/conf/no-jee-container.xml %D/red5/conf/no-jee-container.xml.sample && rm -f %D/red5/conf/no-jee-container.xml || true 2>/dev/null
+red5/conf/no-jee-container.xml.sample
+@exec [ -f %D/red5/conf/no-jee-container.xml ] || cp -p %D/red5/conf/no-jee-container.xml.sample %D/red5/red5/conf/no-jee-container.xml
+@unexec cmp -s %D/red5/conf/password.properties %D/red5/conf/password.properties.sample && rm -f %D/red5/conf/password.properties || true 2>/dev/null
 red5/conf/password.properties.sample
-@exec [ -f %D/red5/conf/password.properties ] || cp -p %D/red5/conf/password.properties.sample %D/red5/conf/password.properties
-@unexec cmp -s %D/red5/conf/quartz.properties.sample %D/red5/conf/quartz.properties && rm -f %D/red5/conf/quartz.properties || true 2>/dev/null
+@exec [ -f %D/red5/conf/password.properties ] || cp -p %D/red5/conf/password.properties.sample %D/red5/red5/conf/password.properties
+@unexec cmp -s %D/red5/conf/quartz.properties %D/red5/conf/quartz.properties.sample && rm -f %D/red5/conf/quartz.properties || true 2>/dev/null
 red5/conf/quartz.properties.sample
-@exec [ -f %D/red5/conf/quartz.properties ] || cp -p %D/red5/conf/quartz.properties.sample %D/red5/conf/quartz.properties
-@unexec cmp -s %D/red5/conf/realm.properties.sample %D/red5/conf/realm.properties && rm -f %D/red5/conf/realm.properties || true 2>/dev/null
+@exec [ -f %D/red5/conf/quartz.properties ] || cp -p %D/red5/conf/quartz.properties.sample %D/red5/red5/conf/quartz.properties
+@unexec cmp -s %D/red5/conf/realm.properties %D/red5/conf/realm.properties.sample && rm -f %D/red5/conf/realm.properties || true 2>/dev/null
 red5/conf/realm.properties.sample
-@exec [ -f %D/red5/conf/realm.properties ] || cp -p %D/red5/conf/realm.properties.sample %D/red5/conf/realm.properties
-@unexec cmp -s %D/red5/conf/red5-common.xml.sample %D/red5/conf/red5-common.xml && rm -f %D/red5/conf/red5-common.xml || true 2>/dev/null
+@exec [ -f %D/red5/conf/realm.properties ] || cp -p %D/red5/conf/realm.properties.sample %D/red5/red5/conf/realm.properties
+@unexec cmp -s %D/red5/conf/red5-common.xml %D/red5/conf/red5-common.xml.sample && rm -f %D/red5/conf/red5-common.xml || true 2>/dev/null
 red5/conf/red5-common.xml.sample
-@exec [ -f %D/red5/conf/red5-common.xml ] || cp -p %D/red5/conf/red5-common.xml.sample %D/red5/conf/red5-common.xml
-@unexec cmp -s %D/red5/conf/red5-core.xml.sample %D/red5/conf/red5-core.xml && rm -f %D/red5/conf/red5-core.xml || true 2>/dev/null
+@exec [ -f %D/red5/conf/red5-common.xml ] || cp -p %D/red5/conf/red5-common.xml.sample %D/red5/red5/conf/red5-common.xml
+@unexec cmp -s %D/red5/conf/red5-core.xml %D/red5/conf/red5-core.xml.sample && rm -f %D/red5/conf/red5-core.xml || true 2>/dev/null
 red5/conf/red5-core.xml.sample
-@exec [ -f %D/red5/conf/red5-core.xml ] || cp -p %D/red5/conf/red5-core.xml.sample %D/red5/conf/red5-core.xml
-@unexec cmp -s %D/red5/conf/red5-edge-core.xml.sample %D/red5/conf/red5-edge-core.xml && rm -f %D/red5/conf/red5-edge-core.xml || true 2>/dev/null
-red5/conf/red5-edge-core.xml.sample
-@exec [ -f %D/red5/conf/red5-edge-core.xml ] || cp -p %D/red5/conf/red5-edge-core.xml.sample %D/red5/conf/red5-edge-core.xml
-@unexec cmp -s %D/red5/conf/red5-edge.xml.sample %D/red5/conf/red5-edge.xml && rm -f %D/red5/conf/red5-edge.xml || true 2>/dev/null
-red5/conf/red5-edge.xml.sample
-@exec [ -f %D/red5/conf/red5-edge.xml ] || cp -p %D/red5/conf/red5-edge.xml.sample %D/red5/conf/red5-edge.xml
-@unexec cmp -s %D/red5/conf/red5-origin-core.xml.sample %D/red5/conf/red5-origin-core.xml && rm -f %D/red5/conf/red5-origin-core.xml || true 2>/dev/null
-red5/conf/red5-origin-core.xml.sample
-@exec [ -f %D/red5/conf/red5-origin-core.xml ] || cp -p %D/red5/conf/red5-origin-core.xml.sample %D/red5/conf/red5-origin-core.xml
-@unexec cmp -s %D/red5/conf/red5-origin.xml.sample %D/red5/conf/red5-origin.xml && rm -f %D/red5/conf/red5-origin.xml || true 2>/dev/null
-red5/conf/red5-origin.xml.sample
-@exec [ -f %D/red5/conf/red5-origin.xml ] || cp -p %D/red5/conf/red5-origin.xml.sample %D/red5/conf/red5-origin.xml
-@unexec cmp -s %D/red5/conf/red5.globals.sample %D/red5/conf/red5.globals && rm -f %D/red5/conf/red5.globals || true 2>/dev/null
+@exec [ -f %D/red5/conf/red5-core.xml ] || cp -p %D/red5/conf/red5-core.xml.sample %D/red5/red5/conf/red5-core.xml
+@unexec cmp -s %D/red5/conf/red5.globals %D/red5/conf/red5.globals.sample && rm -f %D/red5/conf/red5.globals || true 2>/dev/null
 red5/conf/red5.globals.sample
-@exec [ -f %D/red5/conf/red5.globals ] || cp -p %D/red5/conf/red5.globals.sample %D/red5/conf/red5.globals
-@unexec cmp -s %D/red5/conf/red5.policy.sample %D/red5/conf/red5.policy && rm -f %D/red5/conf/red5.policy || true 2>/dev/null
+@exec [ -f %D/red5/conf/red5.globals ] || cp -p %D/red5/conf/red5.globals.sample %D/red5/red5/conf/red5.globals
+@unexec cmp -s %D/red5/conf/red5.policy %D/red5/conf/red5.policy.sample && rm -f %D/red5/conf/red5.policy || true 2>/dev/null
 red5/conf/red5.policy.sample
-@exec [ -f %D/red5/conf/red5.policy ] || cp -p %D/red5/conf/red5.policy.sample %D/red5/conf/red5.policy
-@unexec cmp -s %D/red5/conf/red5.properties.sample %D/red5/conf/red5.properties && rm -f %D/red5/conf/red5.properties || true 2>/dev/null
+@exec [ -f %D/red5/conf/red5.policy ] || cp -p %D/red5/conf/red5.policy.sample %D/red5/red5/conf/red5.policy
+@unexec cmp -s %D/red5/conf/red5.properties %D/red5/conf/red5.properties.sample && rm -f %D/red5/conf/red5.properties || true 2>/dev/null
 red5/conf/red5.properties.sample
-@exec [ -f %D/red5/conf/red5.properties ] || cp -p %D/red5/conf/red5.properties.sample %D/red5/conf/red5.properties
-@unexec cmp -s %D/red5/conf/red5.properties.bak.sample %D/red5/conf/red5.properties.bak && rm -f %D/red5/conf/red5.properties.bak || true 2>/dev/null
-red5/conf/red5.properties.bak.sample
-@exec [ -f %D/red5/conf/red5.properties.bak ] || cp -p %D/red5/conf/red5.properties.bak.sample %D/red5/conf/red5.properties.bak
-@unexec cmp -s %D/red5/conf/red5.xml.sample %D/red5/conf/red5.xml && rm -f %D/red5/conf/red5.xml || true 2>/dev/null
+@exec [ -f %D/red5/conf/red5.properties ] || cp -p %D/red5/conf/red5.properties.sample %D/red5/red5/conf/red5.properties
+@unexec cmp -s %D/red5/conf/red5.xml %D/red5/conf/red5.xml.sample && rm -f %D/red5/conf/red5.xml || true 2>/dev/null
 red5/conf/red5.xml.sample
-@exec [ -f %D/red5/conf/red5.xml ] || cp -p %D/red5/conf/red5.xml.sample %D/red5/conf/red5.xml
-@unexec cmp -s %D/red5/conf/tomcat-users.xml.sample %D/red5/conf/tomcat-users.xml && rm -f %D/red5/conf/tomcat-users.xml || true 2>/dev/null
+@exec [ -f %D/red5/conf/red5.xml ] || cp -p %D/red5/conf/red5.xml.sample %D/red5/red5/conf/red5.xml
+@unexec cmp -s %D/red5/conf/tomcat-users.xml %D/red5/conf/tomcat-users.xml.sample && rm -f %D/red5/conf/tomcat-users.xml || true 2>/dev/null
 red5/conf/tomcat-users.xml.sample
-@exec [ -f %D/red5/conf/tomcat-users.xml ] || cp -p %D/red5/conf/tomcat-users.xml.sample %D/red5/conf/tomcat-users.xml
-@unexec cmp -s %D/red5/conf/truststore.jmx.sample %D/red5/conf/truststore.jmx && rm -f %D/red5/conf/truststore.jmx || true 2>/dev/null
+@exec [ -f %D/red5/conf/tomcat-users.xml ] || cp -p %D/red5/conf/tomcat-users.xml.sample %D/red5/red5/conf/tomcat-users.xml
+@unexec cmp -s %D/red5/conf/truststore.jmx %D/red5/conf/truststore.jmx.sample && rm -f %D/red5/conf/truststore.jmx || true 2>/dev/null
 red5/conf/truststore.jmx.sample
-@exec [ -f %D/red5/conf/truststore.jmx ] || cp -p %D/red5/conf/truststore.jmx.sample %D/red5/conf/truststore.jmx
-@unexec cmp -s %D/red5/conf/war/README.txt.sample %D/red5/conf/war/README.txt && rm -f %D/red5/conf/war/README.txt || true 2>/dev/null
-red5/conf/war/README.txt.sample
-@exec [ -f %D/red5/conf/war/README.txt ] || cp -p %D/red5/conf/war/README.txt.sample %D/red5/conf/war/README.txt
-@unexec cmp -s %D/red5/conf/war/beanRefContext.xml.sample %D/red5/conf/war/beanRefContext.xml && rm -f %D/red5/conf/war/beanRefContext.xml || true 2>/dev/null
-red5/conf/war/beanRefContext.xml.sample
-@exec [ -f %D/red5/conf/war/beanRefContext.xml ] || cp -p %D/red5/conf/war/beanRefContext.xml.sample %D/red5/conf/war/beanRefContext.xml
-@unexec cmp -s %D/red5/conf/war/build_war.properties.sample %D/red5/conf/war/build_war.properties && rm -f %D/red5/conf/war/build_war.properties || true 2>/dev/null
-red5/conf/war/build_war.properties.sample
-@exec [ -f %D/red5/conf/war/build_war.properties ] || cp -p %D/red5/conf/war/build_war.properties.sample %D/red5/conf/war/build_war.properties
-@unexec cmp -s %D/red5/conf/war/context.xml.sample %D/red5/conf/war/context.xml && rm -f %D/red5/conf/war/context.xml || true 2>/dev/null
-red5/conf/war/context.xml.sample
-@exec [ -f %D/red5/conf/war/context.xml ] || cp -p %D/red5/conf/war/context.xml.sample %D/red5/conf/war/context.xml
-@unexec cmp -s %D/red5/conf/war/defaultContext.xml.sample %D/red5/conf/war/defaultContext.xml && rm -f %D/red5/conf/war/defaultContext.xml || true 2>/dev/null
-red5/conf/war/defaultContext.xml.sample
-@exec [ -f %D/red5/conf/war/defaultContext.xml ] || cp -p %D/red5/conf/war/defaultContext.xml.sample %D/red5/conf/war/defaultContext.xml
-@unexec cmp -s %D/red5/conf/war/logback.xml.sample %D/red5/conf/war/logback.xml && rm -f %D/red5/conf/war/logback.xml || true 2>/dev/null
-red5/conf/war/logback.xml.sample
-@exec [ -f %D/red5/conf/war/logback.xml ] || cp -p %D/red5/conf/war/logback.xml.sample %D/red5/conf/war/logback.xml
-@unexec cmp -s %D/red5/conf/war/red5-common.xml.sample %D/red5/conf/war/red5-common.xml && rm -f %D/red5/conf/war/red5-common.xml || true 2>/dev/null
-red5/conf/war/red5-common.xml.sample
-@exec [ -f %D/red5/conf/war/red5-common.xml ] || cp -p %D/red5/conf/war/red5-common.xml.sample %D/red5/conf/war/red5-common.xml
-@unexec cmp -s %D/red5/conf/war/red5-core.xml.sample %D/red5/conf/war/red5-core.xml && rm -f %D/red5/conf/war/red5-core.xml || true 2>/dev/null
-red5/conf/war/red5-core.xml.sample
-@exec [ -f %D/red5/conf/war/red5-core.xml ] || cp -p %D/red5/conf/war/red5-core.xml.sample %D/red5/conf/war/red5-core.xml
-@unexec cmp -s %D/red5/conf/war/red5-web.properties.sample %D/red5/conf/war/red5-web.properties && rm -f %D/red5/conf/war/red5-web.properties || true 2>/dev/null
-red5/conf/war/red5-web.properties.sample
-@exec [ -f %D/red5/conf/war/red5-web.properties ] || cp -p %D/red5/conf/war/red5-web.properties.sample %D/red5/conf/war/red5-web.properties
-@unexec cmp -s %D/red5/conf/war/red5.properties.sample %D/red5/conf/war/red5.properties && rm -f %D/red5/conf/war/red5.properties || true 2>/dev/null
-red5/conf/war/red5.properties.sample
-@exec [ -f %D/red5/conf/war/red5.properties ] || cp -p %D/red5/conf/war/red5.properties.sample %D/red5/conf/war/red5.properties
-@unexec cmp -s %D/red5/conf/war/root-context.xml.sample %D/red5/conf/war/root-context.xml && rm -f %D/red5/conf/war/root-context.xml || true 2>/dev/null
-red5/conf/war/root-context.xml.sample
-@exec [ -f %D/red5/conf/war/root-context.xml ] || cp -p %D/red5/conf/war/root-context.xml.sample %D/red5/conf/war/root-context.xml
-@unexec cmp -s %D/red5/conf/war/root-web.xml.sample %D/red5/conf/war/root-web.xml && rm -f %D/red5/conf/war/root-web.xml || true 2>/dev/null
-red5/conf/war/root-web.xml.sample
-@exec [ -f %D/red5/conf/war/root-web.xml ] || cp -p %D/red5/conf/war/root-web.xml.sample %D/red5/conf/war/root-web.xml
-@unexec cmp -s %D/red5/conf/war/web.xml.sample %D/red5/conf/war/web.xml && rm -f %D/red5/conf/war/web.xml || true 2>/dev/null
-red5/conf/war/web.xml.sample
-@exec [ -f %D/red5/conf/war/web.xml ] || cp -p %D/red5/conf/war/web.xml.sample %D/red5/conf/war/web.xml
-@unexec cmp -s %D/red5/conf/web.xml.sample %D/red5/conf/web.xml && rm -f %D/red5/conf/web.xml || true 2>/dev/null
+@exec [ -f %D/red5/conf/truststore.jmx ] || cp -p %D/red5/conf/truststore.jmx.sample %D/red5/red5/conf/truststore.jmx
+@unexec cmp -s %D/red5/conf/web.xml %D/red5/conf/web.xml.sample && rm -f %D/red5/conf/web.xml || true 2>/dev/null
 red5/conf/web.xml.sample
-@exec [ -f %D/red5/conf/web.xml ] || cp -p %D/red5/conf/web.xml.sample %D/red5/conf/web.xml
-red5/lib/antlr-3.1.3.jar
-red5/lib/asm-3.1.jar
-red5/lib/asm-commons-3.1.jar
-red5/lib/bcprov-jdk16-145.jar
-red5/lib/catalina-6.0.24.jar
-red5/lib/commons-beanutils-1.8.0.jar
-red5/lib/commons-codec-1.4.jar
+@exec [ -f %D/red5/conf/web.xml ] || cp -p %D/red5/conf/web.xml.sample %D/red5/red5/conf/web.xml
+red5/lib/bcprov-jdk15on-1.47.jar
+red5/lib/com.springsource.javax.xml.stream-1.0.1.jar
+red5/lib/com.springsource.net.sf.cglib-2.2.0.jar
+red5/lib/com.springsource.org.antlr-3.1.3.jar
+red5/lib/com.springsource.org.aopalliance-1.0.0.jar
+red5/lib/com.springsource.org.apache.xerces-2.9.1.jar
+red5/lib/com.springsource.org.codehaus.groovy-1.7.0.jar
+red5/lib/com.springsource.org.mozilla.javascript-1.7.0.R2.jar
+red5/lib/com.springsource.org.objectweb.asm-3.2.0.jar
+red5/lib/com.springsource.org.objectweb.asm.commons-3.2.0.jar
+red5/lib/commons-beanutils-1.8.3.jar
+red5/lib/commons-codec-1.6.jar
 red5/lib/commons-collections-3.2.1.jar
-red5/lib/commons-httpclient-3.1.jar
-red5/lib/commons-lang-2.4.jar
+red5/lib/commons-lang3-3.1.jar
 red5/lib/commons-modeler-2.0.1.jar
-red5/lib/commons-pool-1.4.jar
-red5/lib/ehcache-1.6.2.jar
-red5/lib/groovy-all-1.5.7.jar
-red5/lib/jasper-6.0.24.jar
-red5/lib/jasper-el-6.0.24.jar
-red5/lib/jasper-jdt-6.0.24.jar
-red5/lib/jaudiotagger-1.0.8.jar
-red5/lib/javaee-api-5.1.1.jar
-red5/lib/jcl-over-slf4j-1.5.10.jar
-red5/lib/jruby-complete-1.1.6.jar
-red5/lib/jruby-engine-1.1.6.jar
-red5/lib/jul-to-slf4j-1.5.10.jar
-red5/lib/jython-2.5.jar
-red5/lib/log4j-over-slf4j-1.5.10.jar
-red5/lib/logback-classic-0.9.18.jar
-red5/lib/logback-core-0.9.18.jar
-red5/lib/mina-core-2.0.0-RC1.jar
-red5/lib/mina-integration-beans-2.0.0-RC1.jar
-red5/lib/mina-integration-jmx-2.0.0-RC1.jar
-red5/lib/quartz-1.6.5.jar
-red5/lib/slf4j-api-1.5.10.jar
-red5/lib/spring-asm-3.0.0.jar
-red5/lib/spring-beans-3.0.0.jar
-red5/lib/spring-context-3.0.0.jar
-red5/lib/spring-context-support-3.0.0.jar
-red5/lib/spring-core-3.0.0.jar
-red5/lib/spring-expression-3.0.0.jar
-red5/lib/spring-web-3.0.0.jar
-red5/lib/tomcat-coyote-6.0.24.jar
-red5/lib/tomcat-juli-slf4j-1.5.0.jar
-red5/lib/xercesImpl-2.9.1.jar
+red5/lib/commons-pool-1.5.6.jar
+red5/lib/ehcache-core-2.5.0.jar
+red5/lib/httpclient-4.2.jar
+red5/lib/httpcore-4.2.1.jar
+red5/lib/jaudiotagger-2.0.4-SNAPSHOT.jar
+red5/lib/javaee-api-5.1.2.jar
+red5/lib/jcl-over-slf4j-1.6.6.jar
+red5/lib/jruby-1.6.7.2.jar
+red5/lib/jul-to-slf4j-1.6.6.jar
+red5/lib/jython-standalone-2.5.2.jar
+red5/lib/log4j-over-slf4j-1.6.6.jar
+red5/lib/logback-classic-1.0.3.jar
+red5/lib/logback-core-1.0.3.jar
+red5/lib/mina-core-2.0.7-javadoc.jar
+red5/lib/mina-core-2.0.7-sources.jar
+red5/lib/mina-core-2.0.7.jar
+red5/lib/mina-integration-beans-2.0.7-javadoc.jar
+red5/lib/mina-integration-beans-2.0.7-sources.jar
+red5/lib/mina-integration-beans-2.0.7.jar
+red5/lib/mina-integration-jmx-2.0.7-javadoc.jar
+red5/lib/mina-integration-jmx-2.0.7-sources.jar
+red5/lib/mina-integration-jmx-2.0.7.jar
+red5/lib/quartz-1.8.5.jar
+red5/lib/red5-client-1.0.jar
+red5/lib/slf4j-api-1.6.6.jar
+red5/lib/spring-aop-3.1.1.RELEASE.jar
+red5/lib/spring-asm-3.1.1.RELEASE.jar
+red5/lib/spring-beans-3.1.1.RELEASE.jar
+red5/lib/spring-context-3.1.1.RELEASE.jar
+red5/lib/spring-context-support-3.1.1.RELEASE.jar
+red5/lib/spring-core-3.1.1.RELEASE.jar
+red5/lib/spring-expression-3.1.1.RELEASE.jar
+red5/lib/spring-web-3.1.1.RELEASE.jar
+red5/lib/sysout-over-slf4j-1.0.2.jar
 red5/lib/xmlrpc-2.0.1.jar
-red5/red5.jar
+red5/plugins/catalina-6.0.36.jar
+red5/plugins/ecj-3.7.2.jar
+red5/plugins/jasper-6.0.36.jar
+red5/plugins/jasper-el-6.0.36.jar
+red5/plugins/tomcat-coyote-6.0.36.jar
+red5/plugins/tomcat-juli-slf4j-1.5.0.jar
+red5/plugins/tomcatplugin-1.3.jar
+red5/red5-server-1.0-bootstrap.jar
+red5/red5-server-1.0.jar
 red5/webapps/installer/AC_OETags.js
 @unexec cmp -s %D/red5/webapps/installer/WEB-INF/red5-web.properties %D/red5/webapps/installer/WEB-INF/red5-web.properties.sample && rm -f %D/red5/webapps/installer/WEB-INF/red5-web.properties || true 2>/dev/null
 red5/webapps/installer/WEB-INF/red5-web.properties.sample
-@exec [ -f %B/red5-web.properties ] || cp -p %D/%F %B/red5-web.properties
+@exec [ -f %D/red5/webapps/installer/WEB-INF/red5-web.properties ] || cp -p %D/red5/webapps/installer/WEB-INF/red5-web.properties.sample %D/red5/red5/webapps/installer/WEB-INF/red5-web.properties
 @unexec cmp -s %D/red5/webapps/installer/WEB-INF/red5-web.xml %D/red5/webapps/installer/WEB-INF/red5-web.xml.sample && rm -f %D/red5/webapps/installer/WEB-INF/red5-web.xml || true 2>/dev/null
 red5/webapps/installer/WEB-INF/red5-web.xml.sample
-@exec [ -f %B/red5-web.xml ] || cp -p %D/%F %B/red5-web.xml
+@exec [ -f %D/red5/webapps/installer/WEB-INF/red5-web.xml ] || cp -p %D/red5/webapps/installer/WEB-INF/red5-web.xml.sample %D/red5/red5/webapps/installer/WEB-INF/red5-web.xml
 @unexec cmp -s %D/red5/webapps/installer/WEB-INF/web.xml %D/red5/webapps/installer/WEB-INF/web.xml.sample && rm -f %D/red5/webapps/installer/WEB-INF/web.xml || true 2>/dev/null
 red5/webapps/installer/WEB-INF/web.xml.sample
-@exec [ -f %B/web.xml ] || cp -p %D/%F %B/web.xml
+@exec [ -f %D/red5/webapps/installer/WEB-INF/web.xml ] || cp -p %D/red5/webapps/installer/WEB-INF/web.xml.sample %D/red5/red5/webapps/installer/WEB-INF/web.xml
 red5/webapps/installer/history/history.css
 red5/webapps/installer/history/history.js
 red5/webapps/installer/history/historyFrame.html
 red5/webapps/installer/index.html
 red5/webapps/installer/installer.swf
 red5/webapps/installer/playerProductInstall.swf
-red5/webapps/red5-default.xml
+@unexec cmp -s %D/red5/webapps/live/WEB-INF/red5-web.properties %D/red5/webapps/live/WEB-INF/red5-web.properties.sample && rm -f %D/red5/webapps/live/WEB-INF/red5-web.properties || true 2>/dev/null
+red5/webapps/live/WEB-INF/red5-web.properties.sample
+@exec [ -f %D/red5/webapps/live/WEB-INF/red5-web.properties ] || cp -p %D/red5/webapps/live/WEB-INF/red5-web.properties.sample %D/red5/red5/webapps/live/WEB-INF/red5-web.properties
+@unexec cmp -s %D/red5/webapps/live/WEB-INF/red5-web.xml %D/red5/webapps/live/WEB-INF/red5-web.xml.sample && rm -f %D/red5/webapps/live/WEB-INF/red5-web.xml || true 2>/dev/null
+red5/webapps/live/WEB-INF/red5-web.xml.sample
+@exec [ -f %D/red5/webapps/live/WEB-INF/red5-web.xml ] || cp -p %D/red5/webapps/live/WEB-INF/red5-web.xml.sample %D/red5/red5/webapps/live/WEB-INF/red5-web.xml
+@unexec cmp -s %D/red5/webapps/live/WEB-INF/web.xml %D/red5/webapps/live/WEB-INF/web.xml.sample && rm -f %D/red5/webapps/live/WEB-INF/web.xml || true 2>/dev/null
+red5/webapps/live/WEB-INF/web.xml.sample
+@exec [ -f %D/red5/webapps/live/WEB-INF/web.xml ] || cp -p %D/red5/webapps/live/WEB-INF/web.xml.sample %D/red5/red5/webapps/live/WEB-INF/web.xml
+@unexec cmp -s %D/red5/webapps/red5-default.xml %D/red5/webapps/red5-default.xml.sample && rm -f %D/red5/webapps/red5-default.xml || true 2>/dev/null
+red5/webapps/red5-default.xml.sample
+@exec [ -f %D/red5/webapps/red5-default.xml ] || cp -p %D/red5/webapps/red5-default.xml.sample %D/red5/webapps/red5-default.xml 
 @unexec cmp -s %D/red5/webapps/root/WEB-INF/red5-web.properties %D/red5/webapps/root/WEB-INF/red5-web.properties.sample && rm -f %D/red5/webapps/root/WEB-INF/red5-web.properties || true 2>/dev/null
 red5/webapps/root/WEB-INF/red5-web.properties.sample
-@exec [ -f %B/red5-web.properties ] || cp -p %D/%F %B/red5-web.properties
+@exec [ -f %D/red5/webapps/root/WEB-INF/red5-web.properties ] || cp -p %D/red5/webapps/root/WEB-INF/red5-web.properties.sample %D/red5/red5/webapps/root/WEB-INF/red5-web.properties
 @unexec cmp -s %D/red5/webapps/root/WEB-INF/red5-web.xml %D/red5/webapps/root/WEB-INF/red5-web.xml.sample && rm -f %D/red5/webapps/root/WEB-INF/red5-web.xml || true 2>/dev/null
 red5/webapps/root/WEB-INF/red5-web.xml.sample
-@exec [ -f %B/red5-web.xml ] || cp -p %D/%F %B/red5-web.xml
+@exec [ -f %D/red5/webapps/root/WEB-INF/red5-web.xml ] || cp -p %D/red5/webapps/root/WEB-INF/red5-web.xml.sample %D/red5/red5/webapps/root/WEB-INF/red5-web.xml
 @unexec cmp -s %D/red5/webapps/root/WEB-INF/web.xml %D/red5/webapps/root/WEB-INF/web.xml.sample && rm -f %D/red5/webapps/root/WEB-INF/web.xml || true 2>/dev/null
 red5/webapps/root/WEB-INF/web.xml.sample
-@exec [ -f %B/web.xml ] || cp -p %D/%F %B/web.xml
+@exec [ -f %D/red5/webapps/root/WEB-INF/web.xml ] || cp -p %D/red5/webapps/root/WEB-INF/web.xml.sample %D/red5/red5/webapps/root/WEB-INF/web.xml
 red5/webapps/root/biglogo.png
 red5/webapps/root/crossdomain.xml
 red5/webapps/root/demos/BallControl.html
@@ -214,8 +182,6 @@ red5/webapps/root/demos/index.html
 red5/webapps/root/demos/ofla_demo.html
 red5/webapps/root/demos/ofla_demo.swf
 red5/webapps/root/demos/othello.swf
-red5/webapps/root/demos/port_tester.html
-red5/webapps/root/demos/port_tester.swf
 red5/webapps/root/demos/publisher.html
 red5/webapps/root/demos/publisher.swf
 red5/webapps/root/demos/simpleBroadcaster.html
@@ -233,923 +199,41 @@ red5/webapps/root/demos/xrayconnector.sw
 red5/webapps/root/favicon.ico
 red5/webapps/root/favicon.png
 red5/webapps/root/flvdemo.html
+red5/webapps/root/gc.jsp
 red5/webapps/root/index.html
 red5/webapps/root/logo.png
-%%PORTDOCS%%%%DOCSDIR%%/api/constant-values.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/annotations/Anonymous.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/annotations/DeclarePrivate.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/annotations/DeclareProtected.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/annotations/DontSerialize.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/annotations/RemoteClass.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/annotations/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/annotations/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/annotations/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/classloading/ChildFirstClassLoader.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/classloading/ClassLoaderBuilder.JarFileFilter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/classloading/ClassLoaderBuilder.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/classloading/QuartzClassLoadHelper.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/classloading/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/classloading/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/classloading/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/data/messages/DataMessage.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/data/messages/SequencedMessage.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/data/messages/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/data/messages/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/data/messages/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/io/ArrayCollection.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/io/ObjectProxy.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/io/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/io/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/io/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/messages/AbstractMessage.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/messages/AcknowledgeMessage.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/messages/AcknowledgeMessageExt.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/messages/AsyncMessage.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/messages/AsyncMessageExt.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/messages/AuthenticationMessage.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/messages/CommandMessage.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/messages/CommandMessageExt.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/messages/Constants.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/messages/ErrorMessage.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/messages/Message.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/messages/RemotingMessage.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/messages/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/messages/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/compatibility/flex/messaging/messages/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/BaseStreamableFileService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/BufferType.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/CachingFileKeyFrameMetaCache.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/FileKeyFrameMetaCache.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/IKeyFrameMetaCache.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/IStreamableFile.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/IStreamableFileFactory.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/IStreamableFileService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/ITag.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/ITagReader.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/ITagWriter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/IoConstants.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/StreamableFileFactory.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf/AMF.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf/Input.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf/Output.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf3/AMF3.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf3/ByteArray.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf3/DataInput.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf3/DataOutput.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf3/IDataInput.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf3/IDataOutput.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf3/IExternalizable.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf3/Input.ClassReference.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf3/Input.PendingObject.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf3/Input.RefStorage.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf3/Input.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf3/Output.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf3/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf3/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/amf3/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/FLVHeader.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/IFLV.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/IFLVService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/IKeyFrameDataAnalyzer.KeyFrameMeta.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/IKeyFrameDataAnalyzer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/impl/FLV.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/impl/FLVReader.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/impl/FLVService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/impl/FLVWriter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/impl/Tag.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/impl/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/impl/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/impl/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/meta/ICueType.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/meta/IMeta.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/meta/IMetaCue.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/meta/IMetaData.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/meta/IMetaService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/meta/IResolver.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/meta/MetaCue.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/meta/MetaData.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/meta/MetaService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/meta/Resolver.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/meta/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/meta/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/meta/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/flv/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/m4a/IM4A.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/m4a/IM4AService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/m4a/impl/M4A.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/m4a/impl/M4AReader.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/m4a/impl/M4AService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/m4a/impl/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/m4a/impl/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/m4a/impl/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/m4a/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/m4a/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/m4a/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mock/Input.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mock/Mock.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mock/Output.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mock/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mock/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mock/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp3/IMP3.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp3/IMP3Service.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp3/impl/MP3.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp3/impl/MP3Header.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp3/impl/MP3Reader.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp3/impl/MP3Service.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp3/impl/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp3/impl/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp3/impl/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp3/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp3/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp3/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp4/IMP4.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp4/IMP4Service.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp4/MP4Atom.Record.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp4/MP4Atom.TimeSampleRecord.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp4/MP4Atom.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp4/MP4DataStream.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp4/MP4Descriptor.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp4/MP4Frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp4/impl/MP4.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp4/impl/MP4Reader.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp4/impl/MP4Service.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp4/impl/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp4/impl/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp4/impl/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp4/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp4/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/mp4/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/BaseInput.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/BaseOutput.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/DataTypes.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/Deserializer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/Flag.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/ICustomSerializable.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/Input.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/Output.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/RecordSet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/RecordSetPage.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/Serializer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/UnsignedByte.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/UnsignedInt.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/UnsignedLong.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/UnsignedNumber.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/UnsignedShort.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/object/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/utils/ArrayUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/utils/BufferUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/utils/DOM2Writer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/utils/HexCharset.Decoder.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/utils/HexCharset.Encoder.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/utils/HexCharset.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/utils/HexDump.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/utils/IOUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/utils/ObjectMap.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/utils/RandomGUID.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/utils/Stax2DomBuilder.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/utils/XMLUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/utils/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/utils/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/io/utils/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/logging/ContextLoggingListener.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/logging/DerbyLogInterceptor.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/logging/LoggerContextFilter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/logging/LoggingContextSelector.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/logging/Red5LoggerFactory.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/logging/W3CAppender.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/logging/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/logging/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/logging/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/AttributeStore.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/BaseConnection.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/BasicScope.EmptyBasicScopeIterator.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/BasicScope.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/Bootstrap.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/Client.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/ClientList.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/ClientMBean.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/ClientRegistry.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/ClientRegistryMBean.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/Context.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/ContextLoader.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/ContextLoaderMBean.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/ContextMBean.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/CoreHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/CoreHandlerMBean.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/GlobalScope.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/Launcher.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/ListMBean.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/LoaderBase.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/LoaderMBean.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/MappingStrategy.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/PersistableAttributeStore.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/Scope.Builder.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/Scope.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/ScopeMBean.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/ScopeResolver.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/Server.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/Shutdown.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/WebScope.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/adapter/AbstractScopeAdapter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/adapter/ApplicationAdapter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/adapter/ApplicationLifecycle.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/adapter/ApplicationMBean.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/adapter/Config.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/adapter/IApplication.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/adapter/MultiThreadedApplicationAdapter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/adapter/StatefulScopeWrappingAdapter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/adapter/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/adapter/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/adapter/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/AttributeStoreMBean.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/ClientMBean.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/ClientRegistryMBean.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/ConnectionMBean.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/IApplicationContext.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/IApplicationLoader.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/IAttributeStore.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/IBasicScope.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/ICastingAttributeStore.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/IClient.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/IClientRegistry.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/IConnection.Encoding.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/IConnection.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/IContext.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/ICoreObject.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/IGlobalScope.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/IMappingStrategy.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/IScope.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/IScopeAware.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/IScopeHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/IScopeResolver.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/IScopeService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/IServer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/Red5.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/Red5MBean.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/ScopeMBean.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/ScopeUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/cache/ICacheStore.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/cache/ICacheable.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/cache/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/cache/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/cache/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/event/IEvent.Type.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/event/IEvent.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/event/IEventDispatcher.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/event/IEventHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/event/IEventListener.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/event/IEventObservable.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/event/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/event/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/event/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/listeners/IConnectionListener.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/listeners/IScopeListener.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/listeners/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/listeners/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/listeners/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/persistence/IPersistable.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/persistence/IPersistenceStore.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/persistence/PersistenceUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/persistence/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/persistence/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/persistence/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/plugin/IRed5Plugin.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/plugin/IRed5PluginHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/plugin/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/plugin/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/plugin/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/remoting/IRemotingConnection.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/remoting/IRemotingHeader.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/remoting/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/remoting/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/remoting/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/scheduling/IScheduledJob.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/scheduling/ISchedulingService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/scheduling/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/scheduling/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/scheduling/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/service/IPendingServiceCall.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/service/IPendingServiceCallback.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/service/IServiceCall.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/service/IServiceCapableConnection.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/service/IServiceHandlerProvider.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/service/IServiceHandlerProviderAware.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/service/IServiceInvoker.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/service/ServiceUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/service/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/service/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/service/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/session/ISession.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/session/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/session/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/session/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/so/IClientSharedObject.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/so/ISharedObject.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/so/ISharedObjectBase.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/so/ISharedObjectHandlerProvider.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/so/ISharedObjectListener.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/so/ISharedObjectSecurity.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/so/ISharedObjectSecurityService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/so/ISharedObjectService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/so/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/so/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/so/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/statistics/IClientBroadcastStreamStatistics.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/statistics/IPlaylistSubscriberStreamStatistics.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/statistics/IScopeStatistics.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/statistics/ISharedObjectStatistics.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/statistics/IStatisticsBase.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/statistics/IStatisticsService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/statistics/IStreamStatistics.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/statistics/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/statistics/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/statistics/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/statistics/support/StatisticsCounter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/statistics/support/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/statistics/support/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/statistics/support/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IAudioStreamCodec.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IBroadcastStream.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IBroadcastStreamService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IClientBroadcastStream.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IClientStream.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IOnDemandStream.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IOnDemandStreamService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IPlayItem.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IPlaylist.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IPlaylistController.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IPlaylistSubscriberStream.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IRtmpSampleAccess.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IServerStream.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/ISingleItemSubscriberStream.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IStream.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IStreamAwareScopeHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IStreamCapableConnection.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IStreamCodecInfo.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IStreamFilenameGenerator.GenerationType.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IStreamFilenameGenerator.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IStreamHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IStreamListener.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IStreamPacket.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IStreamPlaybackSecurity.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IStreamPublishSecurity.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IStreamSecurityService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IStreamService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/ISubscriberStream.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/ISubscriberStreamService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/IVideoStreamCodec.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/OperationNotSupportedException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/ResourceExistException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/ResourceNotFoundException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/support/DenyAllStreamAccess.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/support/SimplePlayItem.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/support/StreamUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/support/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/support/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/api/stream/support/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/cache/CacheImpl.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/cache/CacheableImpl.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/cache/EhCacheImpl.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/cache/NoCacheImpl.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/cache/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/cache/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/cache/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/exception/AccessDeniedException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/exception/ClientDetailsException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/exception/ClientNotFoundException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/exception/ClientRejectedException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/exception/ScopeHandlerNotFoundException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/exception/ScopeNotFoundException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/exception/ScopeShuttingDownException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/exception/ServiceNotFoundException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/exception/SharedObjectException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/exception/StreamControlException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/exception/StreamDataException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/exception/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/exception/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/exception/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/jmx/JMXAgent.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/jmx/JMXFactory.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/jmx/JMXUtil.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/jmx/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/jmx/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/jmx/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/AbstractMessage.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/AbstractPipe.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/IConsumer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/IFilter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/IMessage.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/IMessageComponent.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/IMessageInput.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/IMessageOutput.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/IPassive.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/IPipe.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/IPipeConnectionListener.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/IProvider.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/IPullableProvider.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/IPushableConsumer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/InMemoryPullPullPipe.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/InMemoryPushPushPipe.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/OOBControlMessage.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/PipeConnectionEvent.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/PipeUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/ServiceAdapter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/messaging/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/midi/MidiPlayer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/midi/SharedMidiObject.MidiReceiver.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/midi/SharedMidiObject.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/midi/Test.MyReceiver.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/midi/Test.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/midi/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/midi/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/midi/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/IConnectionEventQueue.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/IHandshake.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/filter/DefaultMessageSizeEstimator.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/filter/MessageSizeEstimator.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/filter/TrafficShapingFilter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/filter/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/filter/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/filter/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/BaseMRTMPConnection.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/EdgeMRTMPHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/IMRTMPConnection.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/IMRTMPEdgeManager.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/IMRTMPManager.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/IMRTMPOriginManager.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/MRTMPClient.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/MRTMPEdgeConnection.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/MRTMPMinaTransport.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/MRTMPOriginConnection.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/MRTMPPacket.Body.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/MRTMPPacket.Header.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/MRTMPPacket.RTMPBody.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/MRTMPPacket.RTMPHeader.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/MRTMPPacket.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/OriginMRTMPHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/SimpleMRTMPEdgeManager.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/SimpleMRTMPOriginManager.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/codec/MRTMPCodecFactory.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/codec/MRTMPProtocolDecoder.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/codec/MRTMPProtocolEncoder.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/codec/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/codec/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/codec/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/mrtmp/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/protocol/HandshakeFailedException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/protocol/ProtocolException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/protocol/ProtocolState.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/protocol/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/protocol/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/protocol/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/proxy/DebugProxyHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/proxy/NetworkDumpFilter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/proxy/ProxyFilter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/proxy/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/proxy/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/proxy/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/DSRemotingClient.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/FlexMessagingService.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/IRemotingCallback.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/RemotingClient.RemotingWorker.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/RemotingClient.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/RemotingConnection.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/RemotingHeader.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/codec/RemotingCodecFactory.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/codec/RemotingProtocolDecoder.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/codec/RemotingProtocolEncoder.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/codec/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/codec/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/codec/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/message/RemotingCall.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/message/RemotingPacket.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/message/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/message/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/message/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/remoting/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/BaseRTMPClientHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/BaseRTMPHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/Channel.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/ClientExceptionHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/DeferredResult.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/EdgeRTMPHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/EdgeRTMPMinaConnection.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/EdgeRTMPMinaIoHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/INetStreamEventHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/IRTMPConnManager.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/IRTMPHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/RTMPClient.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/RTMPClientConnManager.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/RTMPConnManager.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/RTMPConnection.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/RTMPHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/RTMPHandshake.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/RTMPMinaConnection.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/RTMPMinaConnectionMBean.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/RTMPMinaIoHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/RTMPMinaTransport.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/RTMPMinaTransportMBean.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/RTMPOriginConnection.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/RTMPUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/codec/IEventDecoder.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/codec/IEventEncoder.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/codec/MulticastEventProcessor.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/codec/RTMP.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/codec/RTMPCodecFactory.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/codec/RTMPMinaCodecFactory.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/red5/server/net/rtmp/codec/RTMPMinaProtocolDecoder.html

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307181544.r6IFiBXE073107>