Date: Sun, 2 Jun 2013 23:53:53 +0800 From: Martin Wilke <miwi@FreeBSD.org> To: Gabor Kovesdan <gabor@FreeBSD.org> Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r319644 - in head/net: . turnserver turnserver/files Message-ID: <200DB002-C07A-4599-BF05-0AC1FAFCAEF0@FreeBSD.org> In-Reply-To: <201306020939.r529dKYg002031@svn.freebsd.org> References: <201306020939.r529dKYg002031@svn.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Hi Gabor, poudriere complain about wrong deps. Error: net/turnserver depends on bad origin 'databases/hiredis/'; Please = contact maintainer of the port to fix this. I wonder why you force to install openssl ports instance of using ssl = from base? - Martin On Jun 2, 2013, at 5:39 PM, Gabor Kovesdan <gabor@FreeBSD.org> wrote: > Author: gabor > Date: Sun Jun 2 09:39:19 2013 > New Revision: 319644 > URL: http://svnweb.freebsd.org/changeset/ports/319644 >=20 > Log: > This a BSD-licensed version of the RFC5766 TURN Server = implementation, > with IPv6 and DTLS extensions. >=20 > WWW: http://code.google.com/p/rfc5766-turn-server/ >=20 > Submitted by: Oleg Moskalenko <mom040267@gmail.com> (via = private mail) >=20 > Added: > head/net/turnserver/ > head/net/turnserver/Makefile (contents, props changed) > head/net/turnserver/distinfo (contents, props changed) > head/net/turnserver/files/ > head/net/turnserver/files/pkg-message.in (contents, props changed) > head/net/turnserver/files/turnserver.in (contents, props changed) > head/net/turnserver/pkg-descr (contents, props changed) > head/net/turnserver/pkg-plist (contents, props changed) > Modified: > head/net/Makefile >=20 > Modified: head/net/Makefile > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- head/net/Makefile Sun Jun 2 08:03:12 2013 (r319643) > +++ head/net/Makefile Sun Jun 2 09:39:19 2013 (r319644) > @@ -1191,6 +1191,7 @@ > SUBDIR +=3D ttbudget > SUBDIR +=3D ttlscan > SUBDIR +=3D tucan > + SUBDIR +=3D turnserver > SUBDIR +=3D twinkle > SUBDIR +=3D twitux > SUBDIR +=3D u6rd >=20 > Added: head/net/turnserver/Makefile > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/net/turnserver/Makefile Sun Jun 2 09:39:19 2013 = (r319644) > @@ -0,0 +1,138 @@ > +# $FreeBSD$ > + > +PORTNAME=3D turnserver > +PORTVERSION=3D 1.8.5.3 > +CATEGORIES=3D net > +MASTER_SITES=3D http://rfc5766-turn-server.googlecode.com/files/ > +PKGNAMEPREFIX=3D > + > +MAINTAINER=3D mom040267@gmail.com > +COMMENT=3D STUN/TURN Server; IPv6, DTLS support; RFCs 5389, 5766, = 6062, 6156 > + > +LICENSE=3D BSD > + > +LIB_DEPENDS=3D ssl:${PORTSDIR}/security/openssl \ > + event-2:${PORTSDIR}/devel/libevent2 > + > +SUB_FILES=3D pkg-message > + > +MAN1=3D turnserver.1 turnadmin.1 turnutils.1 turnutils_peer.1 = turnutils_rfc5769check.1 turnutils_stunclient.1 turnutils_uclient.1 > +MANCOMPRESSED=3D no > + > +USE_OPENSSL=3D YES > + > +USE_RC_SUBR=3D turnserver > + > +HAS_CONFIGURE=3D YES > + > +OPTIONS_DEFINE=3D MYSQL PGSQL REDIS > + > +MYSQL_DESC=3D MySQL support for users database > +PGSQL_DESC=3D PostgreSQL support for users database > +REDIS_DESC=3D Redis support for user database and for status = and statistics reporting > + > +OPTIONS_DEFAULT=3D MYSQL PGSQL REDIS > + > +.include <bsd.port.options.mk> > + > +PORTDOCS=3D > +PORTREADMEDOCS=3D README.turnserver README.turnadmin = README.turnutils INSTALL > + > +_BIN_UTILS=3D peer stunclient rfc5769check uclient > + > +_ETC_EXAMPLES=3D turnserver.conf turnuserdb.conf = turn_client_cert.pem \ > + turn_client_pkey.pem turn_server_cert.pem = turn_server_pkey.pem > +_SCRIPT_EXAMPLES=3D peer.sh rfc5769.sh \ > +basic/relay.sh basic/tcp_client_c2c_tcp_relay.sh = basic/udp_c2c_client.sh \ > +basic/udp_client.sh basic/tcp_client.sh \ > +loadbalance/master_relay.sh loadbalance/slave_relay_1.sh = loadbalance/slave_relay_2.sh \ > +loadbalance/udp_c2c.sh loadbalance/tcp_c2c_tcp_relay.sh \ > +longtermsecure/secure_dtls_client.sh longtermsecure/secure_relay.sh \ > +longtermsecure/secure_tcp_client_c2c_tcp_relay.sh = longtermsecure/secure_tcp_client.sh \ > +longtermsecure/secure_tls_client_c2c_tcp_relay.sh = longtermsecure/secure_tls_client.sh \ > +longtermsecure/secure_udp_c2c.sh longtermsecure/secure_udp_client.sh = \ > +longtermsecuredb/secure_relay_with_db_psql.sh = longtermsecuredb/secure_relay_with_db_mysql.sh \ > +longtermsecuredb/secure_relay_with_db_redis.sh \ > +restapi/secure_relay_secret.sh = restapi/secure_relay_secret_with_db_mysql.sh \ > +restapi/secure_relay_secret.sh = restapi/secure_relay_secret_with_db_redis.sh \ > +restapi/secure_udp_client_with_secret.sh \ > +restapi/shared_secret_maintainer.pl \ > +shorttermsecure/secure_tcp_client_c2c_tcp_relay_short_term.sh = shorttermsecure/secure_udp_client_short_term.sh = shorttermsecure/secure_relay_short_term_mech.sh > + > +CONFIGURE_ENV+=3D PTHREAD_LIBS=3D-pthread > + > +.if ${PORT_OPTIONS:MPGSQL} > +USE_PGSQL=3D yes > +LIB_DEPENDS+=3D pq:${PORTSDIR}/databases/postgresql90-client > +.else > +CONFIGURE_ENV+=3D TURN_NO_PQ=3D1 > +.endif > + > +.if ${PORT_OPTIONS:MMYSQL} > +USE_MYSQL=3D yes > +LIB_DEPENDS+=3D mysqlclient:${PORTSDIR}/databases/mysql55-client > +.else > +CONFIGURE_ENV+=3D TURN_NO_MYSQL=3D1 > +.endif > + > +.if ${PORT_OPTIONS:MREDIS} > +LIB_DEPENDS+=3D hiredis:${PORTSDIR}/databases/hiredis/ > +.else > +CONFIGURE_ENV+=3D TURN_NO_HIREDIS=3D1 > +.endif > + > +do-install: > + ${INSTALL_PROGRAM} ${WRKSRC}/bin/turnserver = ${PREFIX}/bin/turnserver > + ${INSTALL_PROGRAM} ${WRKSRC}/bin/turnadmin = ${PREFIX}/bin/turnadmin > +.for f in ${_BIN_UTILS} > + ${INSTALL_PROGRAM} ${WRKSRC}/bin/turnutils_${f} ${PREFIX}/bin/ > +.endfor > +.for f in ${MAN1} > + ${INSTALL_MAN} ${WRKSRC}/man/man1/${f} ${PREFIX}/man/man1/${f} > +.endfor > + ${MKDIR} ${DATADIR}/ > + ${INSTALL_DATA} ${WRKSRC}/turndb/schema.sql = ${DATADIR}/schema.sql > + ${INSTALL_DATA} ${WRKSRC}/turndb/schema.userdb.redis = ${DATADIR}/schema.userdb.redis > + ${INSTALL_DATA} ${WRKSRC}/turndb/schema.stats.redis = ${DATADIR}/schema.stats.redis > + ${INSTALL_DATA} ${WRKSRC}/lib/libturnclient.a = ${PREFIX}/lib/libturnclient.a > + ${INSTALL_DATA} ${WRKSRC}/examples/etc/turnserver.conf = ${PREFIX}/etc/turnserver.conf.default > + ${INSTALL_DATA} ${WRKSRC}/examples/etc/turnuserdb.conf = ${PREFIX}/etc/turnuserdb.conf.default > + ${MKDIR} ${PREFIX}/include/turn > + (cd ${WRKSRC}/include/turn/ && ${COPYTREE_SHARE} client = ${PREFIX}/include/turn/) > + (cd ${WRKSRC}/include/turn/ && ${COPYTREE_SHARE} ns_turn_defs.h = ${PREFIX}/include/turn/) > +.if ${PORT_OPTIONS:MEXAMPLES} > + ${MKDIR} ${EXAMPLESDIR}/scripts > + ${MKDIR} ${EXAMPLESDIR}/scripts/basic > + ${MKDIR} ${EXAMPLESDIR}/scripts/loadbalance > + ${MKDIR} ${EXAMPLESDIR}/scripts/longtermsecure > + ${MKDIR} ${EXAMPLESDIR}/scripts/longtermsecuredb > + ${MKDIR} ${EXAMPLESDIR}/scripts/restapi > + ${MKDIR} ${EXAMPLESDIR}/scripts/shorttermsecure > + ${MKDIR} ${EXAMPLESDIR}/etc > + ${INSTALL_MAN} ${WRKSRC}/examples/scripts/readme.txt = ${EXAMPLESDIR}/scripts > +.for f in ${_ETC_EXAMPLES} > + ${INSTALL_DATA} ${WRKSRC}/examples/etc/${f} ${EXAMPLESDIR}/etc/ > +.endfor > +.for f in ${_SCRIPT_EXAMPLES} > + ${INSTALL_SCRIPT} ${WRKSRC}/examples/scripts/${f} = ${EXAMPLESDIR}/scripts/${f} > +.endfor > +.endif > +.if ${PORT_OPTIONS:MDOCS} > + ${MKDIR} ${DOCSDIR} > +.for f in ${PORTDOCS} > + (cd ${WRKSRC}/docs/ && ${COPYTREE_SHARE} ${f} ${DOCSDIR}) > +.endfor > +.for f in ${PORTREADMEDOCS} > + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} > +.endfor > + ${INSTALL_DATA} ${PKGMESSAGE} ${DOCSDIR}/postinstall.txt > + ${INSTALL_DATA} ${WRKSRC}/turndb/schema.sql = ${DOCSDIR}/schema.sql > + ${INSTALL_DATA} ${WRKSRC}/turndb/schema.userdb.redis = ${DOCSDIR}/schema.userdb.redis > + ${INSTALL_DATA} ${WRKSRC}/turndb/schema.stats.redis = ${DOCSDIR}/schema.stats.redis > +PORTDOCS+=3D postinstall.txt ${PORTREADMEDOCS} schema.sql = schema.userdb.redis schema.stats.redis > +.endif > + > +post-install: > + ${CAT} ${PKGMESSAGE} > + > +.include <bsd.port.mk> >=20 > Added: head/net/turnserver/distinfo > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/net/turnserver/distinfo Sun Jun 2 09:39:19 2013 = (r319644) > @@ -0,0 +1,2 @@ > +SHA256 (turnserver-1.8.5.3.tar.gz) =3D = c4a2481ed17d1f59ce58fe2dca1850d54527778b39d966186e681fedaf864872 > +SIZE (turnserver-1.8.5.3.tar.gz) =3D 204682 >=20 > Added: head/net/turnserver/files/pkg-message.in > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/net/turnserver/files/pkg-message.in Sun Jun 2 09:39:19 2013 = (r319644) > @@ -0,0 +1,40 @@ > +=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > + > +1) You can start and stop the turnserver manually. But, if you want > +to enable turnserver as an automatically started system service,=20 > +you have to: > + > + a) Create and edit /etc/turnserver.conf file. > + Use %%PREFIX%%/etc/turnserver.conf.default as an example. > + > + b) For user accounts settings, if using the turnserver=20 > + with authentication: create and edit /etc/turnuserdb.conf=20 > + file, or set up PostgreSQL or MySQL or Redis database for user = accounts. > + Use %%PREFIX%%/etc/turnuserdb.conf.default as example for flat = file DB, > + or use %%DATADIR%%/schema.sql as database schema, > + or use %%DATADIR%%/schema*redis as Redis > + database description. > + > + d) add line turnserver_enable=3D"YES" to /etc/rc.conf. > + =20 > + e) If you are using a non-default PREFIX (other than = /usr/local), > + then edit /usr/local/etc/rc.d/turnserver file, according to > + your system settings. > +=09 > + f) Restart the system or run the command: > + $ %%PREFIX%%/etc/rc.d/turnserver start > + =20 > +2) If you do not want the turnserver to be a system service,=20 > + then you can start/stop it "manually", using the "turnserver"=20 > + executable with appropriate options (see the documentation). > + =20 > +3) To create database schema, use schema in file = %%DATADIR%%/schema.sql. > + =20 > +4) For additional information, run: > +=20 > + $ man turnserver > + $ man turnadmin > + $ man turnutils > +=09 > +=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > +=20 >=20 > Added: head/net/turnserver/files/turnserver.in > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/net/turnserver/files/turnserver.in Sun Jun 2 09:39:19 2013 = (r319644) > @@ -0,0 +1,30 @@ > +#!/bin/sh > +# > +# $FreeBSD$ > +# > + > +# PROVIDE: turnserver > +# REQUIRE: LOGIN > +# > +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf > +# to enable this service: > +# > +# turnserver_enable (bool): Set to NO by default. > +# Set it to YES to enable doormand. > +# turnserver_config (path): Set to %%PREFIX%%/etc/turnserver.conf > +# by default. > + > +. /etc/rc.subr > + > +: ${turnserver_enable:=3D"NO"} > +: ${turnserver_config=3D"%%PREFIX%%/etc/turnserver.conf"} > + > +name=3D"turnserver" > +rcvar=3D"`set_rcvar`" > + > +load_rc_config $name > + > +command=3D"%%PREFIX%%/bin/${name}" > +command_args=3D"--daemon -c ${turnserver_config}" > + > +run_rc_command "$1" >=20 > Added: head/net/turnserver/pkg-descr > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/net/turnserver/pkg-descr Sun Jun 2 09:39:19 2013 = (r319644) > @@ -0,0 +1,4 @@ > +This a BSD-licensed version of the RFC5766 TURN Server = implementation,=20 > +with IPv6 and DTLS extensions. > + > +WWW: http://code.google.com/p/rfc5766-turn-server/ >=20 > Added: head/net/turnserver/pkg-plist > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/net/turnserver/pkg-plist Sun Jun 2 09:39:19 2013 = (r319644) > @@ -0,0 +1,69 @@ > +bin/turnserver > +bin/turnadmin > +bin/turnutils_peer > +bin/turnutils_rfc5769check > +bin/turnutils_stunclient > +bin/turnutils_uclient > +lib/libturnclient.a > +etc/turnserver.conf.default > +etc/turnuserdb.conf.default > +%%DATADIR%%/schema.sql > +%%DATADIR%%/schema.userdb.redis > +%%DATADIR%%/schema.stats.redis > +@dirrmtry %%DATADIR%% > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/etc/turnserver.conf > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/etc/turnuserdb.conf > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/etc/turn_client_cert.pem > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/etc/turn_client_pkey.pem > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/etc/turn_server_cert.pem > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/etc/turn_server_pkey.pem > +%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/etc > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/readme.txt > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/peer.sh > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/rfc5769.sh > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/basic/relay.sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/basic/tcp_client_c2c_tcp_relay.sh= > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/basic/udp_c2c_client.sh > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/basic/udp_client.sh > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/basic/tcp_client.sh > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/loadbalance/master_relay.sh > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/loadbalance/slave_relay_1.sh > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/loadbalance/slave_relay_2.sh > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/loadbalance/udp_c2c.sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/loadbalance/tcp_c2c_tcp_relay.sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/longtermsecure/secure_dtls_client= .sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/longtermsecure/secure_relay.sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/longtermsecure/secure_tcp_client_= c2c_tcp_relay.sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/longtermsecure/secure_tcp_client.= sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/longtermsecure/secure_tls_client_= c2c_tcp_relay.sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/longtermsecure/secure_tls_client.= sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/longtermsecure/secure_udp_c2c.sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/longtermsecure/secure_udp_client.= sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/longtermsecuredb/secure_relay_wit= h_db_psql.sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/longtermsecuredb/secure_relay_wit= h_db_mysql.sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/longtermsecuredb/secure_relay_wit= h_db_redis.sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/restapi/secure_relay_secret.sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/restapi/secure_relay_secret_with_= db_mysql.sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/restapi/secure_relay_secret_with_= db_redis.sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/restapi/secure_udp_client_with_se= cret.sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/restapi/shared_secret_maintainer.= pl > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/shorttermsecure/secure_tcp_client= _c2c_tcp_relay_short_term.sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/shorttermsecure/secure_udp_client= _short_term.sh > = +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scripts/shorttermsecure/secure_relay_shor= t_term_mech.sh > +%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/scripts/basic > +%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/scripts/loadbalance > +%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/scripts/longtermsecure > +%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/scripts/longtermsecuredb > +%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/scripts/restapi > +%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/scripts/shorttermsecure > +%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/scripts > +%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%% > +include/turn/ns_turn_defs.h > +include/turn/client/TurnMsgLib.h > +include/turn/client/ns_turn_ioaddr.h > +include/turn/client/ns_turn_msg.h > +include/turn/client/ns_turn_msg_addr.h > +include/turn/client/ns_turn_msg_defs.h > +@dirrmtry include/turn/client/ > +@dirrmtry include/turn > +@stopdaemon turnserver >=20 +-----------------oOO--(_)--OOo-------------------------+ With best Regards, Martin Wilke (miwi_(at)_FreeBSD.org) Mess with the Best, Die like the Rest
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200DB002-C07A-4599-BF05-0AC1FAFCAEF0>