123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442 |
- Name: turnserver
- Version: 4.5.2
- Release: 0%{dist}
- Summary: Coturn TURN Server
- Group: System Environment/Libraries
- License: BSD
- URL: https://github.com/coturn/coturn/
- Source0: https://github.com/coturn/coturn/archive/%{version}.tar.gz
- BuildRequires: gcc, make, redhat-rpm-config, sqlite-devel
- BuildRequires: openssl-devel, libevent-devel >= 2.0.0, postgresql-devel
- BuildRequires: hiredis-devel
- Requires: openssl, sqlite, libevent >= 2.0.0, mysql-libs, postgresql-libs
- Requires: hiredis, perl-DBI, perl-libwww-perl
- Requires: telnet
- %if 0%{?el6}
- BuildRequires: epel-release, mysql-devel
- Requires: epel-release, mysql-libs
- %else
- BuildRequires: mariadb-devel
- Requires: mariadb-libs
- %endif
- %description
- The TURN Server is a VoIP media traffic NAT traversal server and gateway. It
- can be used as a general-purpose network traffic TURN server/gateway, too.
- This implementation also includes some extra features. Supported RFCs:
- TURN specs:
- - RFC 5766 - base TURN specs
- - RFC 6062 - TCP relaying TURN extension
- - RFC 6156 - IPv6 extension for TURN
- - Experimental DTLS support as client protocol.
- STUN specs:
- - RFC 3489 - "classic" STUN
- - RFC 5389 - base "new" STUN specs
- - RFC 5769 - test vectors for STUN protocol testing
- - RFC 5780 - NAT behavior discovery support
- The implementation fully supports the following client-to-TURN-server protocols:
- - UDP (per RFC 5766)
- - TCP (per RFC 5766 and RFC 6062)
- - TLS (per RFC 5766 and RFC 6062); TLS1.0/TLS1.1/TLS1.2
- - DTLS (experimental non-standard feature)
- Supported relay protocols:
- - UDP (per RFC 5766)
- - TCP (per RFC 6062)
- Supported user databases (for user repository, with passwords or keys, if
- authentication is required):
- - SQLite
- - MySQL
- - PostgreSQL
- - Redis
- Redis can also be used for status and statistics storage and notification.
- Supported TURN authentication mechanisms:
- - long-term
- - TURN REST API (a modification of the long-term mechanism, for time-limited
- secret-based authentication, for WebRTC applications)
- The load balancing can be implemented with the following tools (either one or a
- combination of them):
- - network load-balancer server
- - DNS-based load balancing
- - built-in ALTERNATE-SERVER mechanism.
- %package utils
- Summary: TURN client utils
- Group: System Environment/Libraries
- Requires: turnserver-client-libs = %{version}-%{release}
- %description utils
- This package contains the TURN client utils.
- %package client-libs
- Summary: TURN client library
- Group: System Environment/Libraries
- Requires: openssl, libevent >= 2.0.0
- %description client-libs
- This package contains the TURN client library.
- %package client-devel
- Summary: TURN client development headers.
- Group: Development/Libraries
- Requires: turnserver-client-libs = %{version}-%{release}
- %description client-devel
- This package contains the TURN client development headers.
- %prep
- %setup -q -n %{name}-%{version}
- %build
- PREFIX=%{_prefix} CONFDIR=%{_sysconfdir}/%{name} EXAMPLESDIR=%{_datadir}/%{name} \
- MANPREFIX=%{_datadir} LIBDIR=%{_libdir} ./configure
- make
- %install
- rm -rf $RPM_BUILD_ROOT
- DESTDIR=$RPM_BUILD_ROOT make install
- mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig
- install -m644 rpm/turnserver.sysconfig \
- $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/turnserver
- sed -i -e "s/#syslog/syslog/g" \
- -e "s/#no-stdout-log/no-stdout-log/g" \
- $RPM_BUILD_ROOT/%{_sysconfdir}/%{name}/turnserver.conf.default
- %if 0%{?el6}
- mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/rc.d/init.d
- install -m755 rpm/turnserver.init.el \
- $RPM_BUILD_ROOT/%{_sysconfdir}/rc.d/init.d/turnserver
- %else
- sed -i -e "s/#pidfile/pidfile/g" \
- -e "s:/var/run/turnserver.pid:/var/run/turnserver/turnserver.pid:g" \
- $RPM_BUILD_ROOT/%{_sysconfdir}/%{name}/turnserver.conf.default
- mkdir -p $RPM_BUILD_ROOT/%{_unitdir}
- install -m755 rpm/turnserver.service.fc \
- $RPM_BUILD_ROOT/%{_unitdir}/turnserver.service
- %endif
- mv $RPM_BUILD_ROOT/%{_sysconfdir}/%{name}/turnserver.conf.default $RPM_BUILD_ROOT/%{_sysconfdir}/%{name}/turnserver.conf
- %{__install} -Dpm 0644 rpm/turnserver-tmpfiles.conf %{buildroot}%{_tmpfilesdir}/turnserver.conf
- mkdir -p %{buildroot}%{_localstatedir}/run/turnserver
- %clean
- rm -rf "$RPM_BUILD_ROOT"
- %pre
- %{_sbindir}/groupadd -r turnserver 2> /dev/null || :
- %{_sbindir}/useradd -r -g turnserver -s /bin/false -c "TURN Server daemon" -d \
- %{_datadir}/%{name} turnserver 2> /dev/null || :
- %post
- %if 0%{?el6}
- /sbin/chkconfig --add turnserver
- %else
- /bin/systemctl --system daemon-reload
- %endif
- %preun
- if [ $1 = 0 ]; then
- %if 0%{?el6}
- /sbin/service turnserver stop > /dev/null 2>&1
- /sbin/chkconfig --del turnserver
- %else
- /bin/systemctl stop turnserver.service
- /bin/systemctl disable turnserver.service 2> /dev/null
- %endif
- fi
- %postun
- %if 0%{?fedora}
- /bin/systemctl --system daemon-reload
- %endif
- %files
- %defattr(-,root,root)
- %{_bindir}/turnserver
- %{_bindir}/turnadmin
- %attr(0640,turnserver,turnserver) %{_localstatedir}/db/turndb
- %{_mandir}/man1/coturn.1.gz
- %{_mandir}/man1/turnserver.1.gz
- %{_mandir}/man1/turnadmin.1.gz
- %dir %attr(-,turnserver,turnserver) %{_sysconfdir}/%{name}
- %config(noreplace) %attr(0644,turnserver,turnserver) %{_sysconfdir}/%{name}/turnserver.conf
- %dir %attr(0750,turnserver,turnserver) %{_localstatedir}/run/turnserver
- %config(noreplace) %{_sysconfdir}/sysconfig/turnserver
- %if 0%{?el6}
- %config %{_sysconfdir}/rc.d/init.d/turnserver
- %else
- %config %{_unitdir}/turnserver.service
- %{_tmpfilesdir}/turnserver.conf
- %endif
- %dir %{_docdir}/%{name}
- %{_docdir}/%{name}/LICENSE
- %{_docdir}/%{name}/INSTALL
- %{_docdir}/%{name}/postinstall.txt
- %{_docdir}/%{name}/README.turnadmin
- %{_docdir}/%{name}/README.turnserver
- %{_docdir}/%{name}/schema.sql
- %{_docdir}/%{name}/schema.mongo.sh
- %{_docdir}/%{name}/schema.stats.redis
- %{_docdir}/%{name}/schema.userdb.redis
- %dir %{_datadir}/%{name}
- %{_datadir}/%{name}/schema.sql
- %{_datadir}/%{name}/schema.mongo.sh
- %{_datadir}/%{name}/schema.stats.redis
- %{_datadir}/%{name}/schema.userdb.redis
- %{_datadir}/%{name}/testredisdbsetup.sh
- %{_datadir}/%{name}/testmongosetup.sh
- %{_datadir}/%{name}/testsqldbsetup.sql
- %dir %{_datadir}/%{name}/etc
- %{_datadir}/%{name}/etc/cacert.pem
- %{_datadir}/%{name}/etc/coturn.service
- %{_datadir}/%{name}/etc/turn_server_cert.pem
- %{_datadir}/%{name}/etc/turn_server_pkey.pem
- %{_datadir}/%{name}/etc/turnserver.conf
- %dir %{_datadir}/%{name}/scripts
- %{_datadir}/%{name}/scripts/peer.sh
- %{_datadir}/%{name}/scripts/oauth.sh
- %{_datadir}/%{name}/scripts/readme.txt
- %{_datadir}/%{name}/scripts/pack.sh
- %dir %{_datadir}/%{name}/scripts/basic
- %{_datadir}/%{name}/scripts/basic/dos_attack.sh
- %{_datadir}/%{name}/scripts/basic/relay.sh
- %{_datadir}/%{name}/scripts/basic/tcp_client.sh
- %{_datadir}/%{name}/scripts/basic/tcp_client_c2c_tcp_relay.sh
- %{_datadir}/%{name}/scripts/basic/udp_c2c_client.sh
- %{_datadir}/%{name}/scripts/basic/udp_client.sh
- %dir %{_datadir}/%{name}/scripts/loadbalance
- %{_datadir}/%{name}/scripts/loadbalance/master_relay.sh
- %{_datadir}/%{name}/scripts/loadbalance/slave_relay_1.sh
- %{_datadir}/%{name}/scripts/loadbalance/slave_relay_2.sh
- %{_datadir}/%{name}/scripts/loadbalance/tcp_c2c_tcp_relay.sh
- %{_datadir}/%{name}/scripts/loadbalance/udp_c2c.sh
- %dir %{_datadir}/%{name}/scripts/longtermsecure
- %{_datadir}/%{name}/scripts/longtermsecure/secure_dos_attack.sh
- %{_datadir}/%{name}/scripts/longtermsecure/secure_dtls_client.sh
- %{_datadir}/%{name}/scripts/longtermsecure/secure_dtls_client_cert.sh
- %{_datadir}/%{name}/scripts/longtermsecure/secure_tls_client_cert.sh
- %{_datadir}/%{name}/scripts/longtermsecure/secure_relay.sh
- %{_datadir}/%{name}/scripts/longtermsecure/secure_relay_cert.sh
- %{_datadir}/%{name}/scripts/longtermsecure/secure_tcp_client.sh
- %{_datadir}/%{name}/scripts/longtermsecure/secure_tcp_client_c2c_tcp_relay.sh
- %{_datadir}/%{name}/scripts/longtermsecure/secure_tls_client.sh
- %{_datadir}/%{name}/scripts/longtermsecure/secure_tls_client_c2c_tcp_relay.sh
- %{_datadir}/%{name}/scripts/longtermsecure/secure_udp_c2c.sh
- %{_datadir}/%{name}/scripts/longtermsecure/secure_udp_client.sh
- %{_datadir}/%{name}/scripts/longtermsecure/secure_sctp_client.sh
- %dir %{_datadir}/%{name}/scripts/longtermsecuredb
- %{_datadir}/%{name}/scripts/longtermsecuredb/secure_relay_with_db_mysql.sh
- %{_datadir}/%{name}/scripts/longtermsecuredb/secure_relay_with_db_mysql_ssl.sh
- %{_datadir}/%{name}/scripts/longtermsecuredb/secure_relay_with_db_mongo.sh
- %{_datadir}/%{name}/scripts/longtermsecuredb/secure_relay_with_db_psql.sh
- %{_datadir}/%{name}/scripts/longtermsecuredb/secure_relay_with_db_redis.sh
- %{_datadir}/%{name}/scripts/longtermsecuredb/secure_relay_with_db_sqlite.sh
- %dir %{_datadir}/%{name}/scripts/restapi
- %{_datadir}/%{name}/scripts/restapi/secure_relay_secret.sh
- %{_datadir}/%{name}/scripts/restapi/secure_relay_secret_with_db_mysql.sh
- %{_datadir}/%{name}/scripts/restapi/secure_relay_secret_with_db_psql.sh
- %{_datadir}/%{name}/scripts/restapi/secure_relay_secret_with_db_redis.sh
- %{_datadir}/%{name}/scripts/restapi/secure_relay_secret_with_db_mongo.sh
- %{_datadir}/%{name}/scripts/restapi/secure_relay_secret_with_db_sqlite.sh
- %{_datadir}/%{name}/scripts/restapi/secure_udp_client_with_secret.sh
- %{_datadir}/%{name}/scripts/restapi/shared_secret_maintainer.pl
- %dir %{_datadir}/%{name}/scripts/selfloadbalance
- %{_datadir}/%{name}/scripts/selfloadbalance/secure_dos_attack.sh
- %{_datadir}/%{name}/scripts/selfloadbalance/secure_relay.sh
- %dir %{_datadir}/%{name}/scripts/mobile
- %{_datadir}/%{name}/scripts/mobile/mobile_relay.sh
- %{_datadir}/%{name}/scripts/mobile/mobile_dtls_client.sh
- %{_datadir}/%{name}/scripts/mobile/mobile_tcp_client.sh
- %{_datadir}/%{name}/scripts/mobile/mobile_tls_client_c2c_tcp_relay.sh
- %{_datadir}/%{name}/scripts/mobile/mobile_udp_client.sh
- %files utils
- %defattr(-,root,root)
- %{_bindir}/turnutils_peer
- %{_bindir}/turnutils_stunclient
- %{_bindir}/turnutils_uclient
- %{_bindir}/turnutils_oauth
- %{_bindir}/turnutils_natdiscovery
- %{_mandir}/man1/turnutils.1.gz
- %{_mandir}/man1/turnutils_peer.1.gz
- %{_mandir}/man1/turnutils_stunclient.1.gz
- %{_mandir}/man1/turnutils_uclient.1.gz
- %{_mandir}/man1/turnutils_oauth.1.gz
- %{_mandir}/man1/turnutils_natdiscovery.1.gz
- %dir %{_docdir}/%{name}
- %{_docdir}/%{name}/LICENSE
- %{_docdir}/%{name}/README.turnutils
- %dir %{_datadir}/%{name}
- %dir %{_datadir}/%{name}/etc
- %{_datadir}/%{name}/etc/turn_client_cert.pem
- %{_datadir}/%{name}/etc/turn_client_pkey.pem
- %files client-libs
- %{_docdir}/%{name}/LICENSE
- %{_libdir}/libturnclient.a
- %files client-devel
- %{_docdir}/%{name}/LICENSE
- %dir %{_includedir}/turn
- %{_includedir}/turn/ns_turn_defs.h
- %dir %{_includedir}/turn/client
- %{_includedir}/turn/client/ns_turn_ioaddr.h
- %{_includedir}/turn/client/ns_turn_msg_addr.h
- %{_includedir}/turn/client/ns_turn_msg_defs.h
- %{_includedir}/turn/client/ns_turn_msg_defs_experimental.h
- %{_includedir}/turn/client/ns_turn_msg.h
- %{_includedir}/turn/client/TurnMsgLib.h
- %changelog
- * Sun Jan 10 2021 Mészáros Mihály <[email protected]>
- - Sync to 4.5.2
- * Sat Mar 2 2019 Mészáros Mihály <[email protected]>
- - Sync to 4.5.1.1
- * Thu Dec 6 2018 Mészáros Mihály <[email protected]>
- - Sync to 4.5.1.0
- * Thu Sep 27 2018 Oleg Moskalenko <[email protected]>
- - Sync to 4.5.0.8
- * Sun Dec 10 2017 Oleg Moskalenko <[email protected]>
- - Sync to 4.5.0.7
- * Mon Oct 17 2016 Oleg Moskalenko <[email protected]>
- - Sync to 4.5.0.6
- * Sat Aug 27 2016 Oleg Moskalenko <[email protected]>
- - Sync to 4.5.0.5
- * Sat Aug 20 2016 Oleg Moskalenko <[email protected]>
- - Sync to 4.5.0.4
- * Sun Oct 11 2015 Oleg Moskalenko <[email protected]>
- - Sync to 4.5.0.3
- * Tue Sep 29 2015 Oleg Moskalenko <[email protected]>
- - Sync to 4.5.0.2
- * Sun Sep 13 2015 Oleg Moskalenko <[email protected]>
- - Sync to 4.5.0.1
- * Sat Jul 18 2015 Oleg Moskalenko <[email protected]>
- - Sync to 4.4.5.4
- * Sat Jun 20 2015 Oleg Moskalenko <[email protected]>
- - Sync to 4.4.5.3
- * Fri May 29 2015 Oleg Moskalenko <[email protected]>
- - Sync to 4.4.5.2
- * Tue Mar 31 2015 Oleg Moskalenko <[email protected]>
- - Sync to 4.4.4.2
- * Sun Mar 15 2015 Oleg Moskalenko <[email protected]>
- - Sync to 4.4.4.1
- * Sat Feb 28 2015 Oleg Moskalenko <[email protected]>
- - Sync to 4.4.2.3
- * Wed Feb 18 2015 Oleg Moskalenko <[email protected]>
- - Sync to 4.4.2.2
- * Tue Feb 3 2015 Oleg Moskalenko <[email protected]>
- - Sync to 4.4.2.1
- * Sun Feb 1 2015 Oleg Moskalenko <[email protected]>
- - Sync to 4.4.1.2
- * Sat Jan 24 2015 Oleg Moskalenko <[email protected]>
- - Sync to 4.4.1.1
- * Wed Dec 24 2014 Oleg Moskalenko <[email protected]>
- - Sync to 4.3.3.1
- * Sun Dec 14 2014 Oleg Moskalenko <[email protected]>
- - Sync to 4.3.2.2
- * Sat Nov 29 2014 Oleg Moskalenko <[email protected]>
- - Sync to 4.3.1.3
- * Mon Nov 24 2014 Oleg Moskalenko <[email protected]>
- - Sync to 4.3.1.2
- * Sat Nov 22 2014 Oleg Moskalenko <[email protected]>
- - Sync to 4.3.1.1
- * Fri Nov 07 2014 Oleg Moskalenko <[email protected]>
- - Sync to 4.2.3.1
- * Sun Oct 26 2014 Oleg Moskalenko <[email protected]>
- - Sync to 4.2.2.2
- * Sun Oct 05 2014 Oleg Moskalenko <[email protected]>
- - Sync to 4.2.1.2
- * Thu Aug 14 2014 Oleg Moskalenko <[email protected]>
- - Sync to 4.1.2.1
- * Tue Jul 29 2014 Oleg Moskalenko <[email protected]>
- - Sync to 4.1.1.1
- * Tue Jul 22 2014 Oleg Moskalenko <[email protected]>
- - Sync to 4.1.0.2
- * Wed Jun 25 2014 Oleg Moskalenko <[email protected]>
- - Sync to 4.0.1.4
- * Fri Jun 13 2014 Oleg Moskalenko <[email protected]>
- - Sync to 4.0.1.3
- * Fri Jun 06 2014 Oleg Moskalenko <[email protected]>
- - Sync to 4.0.1.2
- * Sun May 18 2014 Oleg Moskalenko <[email protected]>
- - Sync to 4.0.0.2
- * Wed May 07 2014 Oleg Moskalenko <[email protected]>
- - Sync to 4.0.0.1
- * Wed Apr 30 2014 Oleg Moskalenko <[email protected]>
- - Sync to 4.0.0.0
- * Tue Feb 04 2014 Oleg Moskalenko <[email protected]>
- - Sync to 3.2.2.6
- * Sat Jan 25 2014 Oleg Moskalenko <[email protected]>
- - Sync to 3.2.2.5
- * Fri Jan 24 2014 Oleg Moskalenko <[email protected]>
- - Sync to 3.2.2.4
- * Thu Jan 23 2014 Oleg Moskalenko <[email protected]>
- - Sync to 3.2.2.3
- * Tue Jan 21 2014 Oleg Moskalenko <[email protected]>
- - Sync to 3.2.2.2
- * Sat Jan 11 2014 Oleg Moskalenko <[email protected]>
- - CPU optimization, added to 3.2.2.1
- * Mon Jan 06 2014 Oleg Moskalenko <[email protected]>
- - Linux epoll performance improvements, added to 3.2.1.4
- * Mon Jan 06 2014 Oleg Moskalenko <[email protected]>
- - Telnet client installation added to 3.2.1.3
- * Sun Jan 05 2014 Oleg Moskalenko <[email protected]>
- - Sync to 3.2.1.2
- * Fri Jan 03 2014 Oleg Moskalenko <[email protected]>
- - Sync to 3.2.1.1
- * Thu Dec 26 2013 Oleg Moskalenko <[email protected]>
- - Sync to 3.2.1.0
- * Wed Dec 25 2013 Oleg Moskalenko <[email protected]>
- - Sync to 3.1.6.0
- * Mon Dec 23 2013 Oleg Moskalenko <[email protected]>
- - Sync to 3.1.5.3
- * Fri Dec 20 2013 Oleg Moskalenko <[email protected]>
- - Sync to 3.1.5.1
- * Thu Dec 19 2013 Oleg Moskalenko <[email protected]>
- - Sync to 3.1.4.2
- * Sat Dec 14 2013 Oleg Moskalenko <[email protected]>
- - Sync to 3.1.3.1
- * Wed Dec 11 2013 Oleg Moskalenko <[email protected]>
- - OpenSSL installation fixed 3.1.2.3
- * Tue Dec 10 2013 Oleg Moskalenko <[email protected]>
- - Updated to version 3.1.2.2
- * Mon Dec 09 2013 Oleg Moskalenko <[email protected]>
- - Updated to version 3.1.2.1
- * Sun Dec 01 2013 Oleg Moskalenko <[email protected]>
- - Updated to version 3.1.1.0
- * Sat Nov 30 2013 Oleg Moskalenko <[email protected]>
- - Updated to version 3.0.2.1.
- * Thu Nov 28 2013 Oleg Moskalenko <[email protected]>
- - Config file setting fixed: version 3.0.1.4.
- * Wed Nov 27 2013 Oleg Moskalenko <[email protected]>
- - Config file setting fixed: version 3.0.1.3.
- * Mon Nov 25 2013 Oleg Moskalenko <[email protected]>
- - Updated to version 3.0.1.2
- * Sun Nov 10 2013 Oleg Moskalenko <[email protected]>
- - Updated to version 3.0.0.0
- * Fri Nov 8 2013 Oleg Moskalenko <[email protected]>
- - Updated to version 2.6.7.2
- * Thu Nov 7 2013 Oleg Moskalenko <[email protected]>
- - Updated to version 2.6.7.1
- * Sun Nov 3 2013 Oleg Moskalenko <[email protected]>
- - Updated to version 2.6.7.0
- * Sat Nov 2 2013 Peter Dunkley <[email protected]>
- - Added Fedora support
- * Thu Oct 31 2013 Oleg Moskalenko <[email protected]>
- - Updated to version 2.6.6.2
- * Sun Oct 27 2013 Oleg Moskalenko <[email protected]>
- - Updated to version 2.6.6.1
- * Sun Oct 27 2013 Peter Dunkley <[email protected]>
- - Updated to version 2.6.6.0
- * Fri May 3 2013 Peter Dunkley <[email protected]>
- - First version
|