Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created March 10, 2019 06:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/fd908a9d2c1aeb6340cd4b14e4e33e06 to your computer and use it in GitHub Desktop.
Save ryantm/fd908a9d2c1aeb6340cd4b14e4e33e06 to your computer and use it in GitHub Desktop.
/nix/store/4k4ns1lllazvxd91fvwsdd2wrk1q9gsr-coturn-4.5.1.1
├── bin
│   ├── turnadmin
│   ├── turnserver
│   ├── turnutils_natdiscovery
│   ├── turnutils_oauth
│   ├── turnutils_peer
│   ├── turnutils_stunclient
│   └── turnutils_uclient
├── etc
│   └── turnserver.conf.default
├── include
│   └── turn
│   ├── client
│   │   ├── ns_turn_ioaddr.h
│   │   ├── ns_turn_msg_addr.h
│   │   ├── ns_turn_msg_defs_experimental.h
│   │   ├── ns_turn_msg_defs.h
│   │   ├── ns_turn_msg.h
│   │   └── TurnMsgLib.h
│   └── ns_turn_defs.h
├── lib
│   └── libturnclient.a
├── share
│   ├── doc
│   │   └── turnserver
│   │   ├── INSTALL
│   │   ├── LICENSE
│   │   ├── postinstall.txt
│   │   ├── README.turnadmin
│   │   ├── README.turnserver
│   │   ├── README.turnutils
│   │   ├── schema.mongo.sh
│   │   ├── schema.sql
│   │   ├── schema.stats.redis
│   │   └── schema.userdb.redis
│   ├── examples
│   │   └── turnserver
│   │   ├── etc
│   │   │   ├── turn_client_cert.pem
│   │   │   ├── turn_client_pkey.pem
│   │   │   ├── turn_server_cert.pem
│   │   │   ├── turnserver.conf
│   │   │   └── turn_server_pkey.pem
│   │   └── scripts
│   │   ├── basic
│   │   │   ├── dos_attack.sh
│   │   │   ├── relay.sh
│   │   │   ├── tcp_client_c2c_tcp_relay.sh
│   │   │   ├── tcp_client.sh
│   │   │   ├── udp_c2c_client.sh
│   │   │   └── udp_client.sh
│   │   ├── loadbalance
│   │   │   ├── master_relay.sh
│   │   │   ├── slave_relay_1.sh
│   │   │   ├── slave_relay_2.sh
│   │   │   ├── tcp_c2c_tcp_relay.sh
│   │   │   └── udp_c2c.sh
│   │   ├── longtermsecure
│   │   │   ├── secure_dos_attack.sh
│   │   │   ├── secure_dtls_client_cert.sh
│   │   │   ├── secure_dtls_client.sh
│   │   │   ├── secure_relay_cert.sh
│   │   │   ├── secure_relay.sh
│   │   │   ├── secure_sctp_client.sh
│   │   │   ├── secure_tcp_client_c2c_tcp_relay.sh
│   │   │   ├── secure_tcp_client.sh
│   │   │   ├── secure_tls_client_c2c_tcp_relay.sh
│   │   │   ├── secure_tls_client_cert.sh
│   │   │   ├── secure_tls_client.sh
│   │   │   ├── secure_udp_c2c.sh
│   │   │   └── secure_udp_client.sh
│   │   ├── longtermsecuredb
│   │   │   ├── secure_relay_with_db_mongo.sh
│   │   │   ├── secure_relay_with_db_mysql.sh
│   │   │   ├── secure_relay_with_db_mysql_ssl.sh
│   │   │   ├── secure_relay_with_db_psql.sh
│   │   │   ├── secure_relay_with_db_redis.sh
│   │   │   └── secure_relay_with_db_sqlite.sh
│   │   ├── mobile
│   │   │   ├── mobile_dtls_client.sh
│   │   │   ├── mobile_relay.sh
│   │   │   ├── mobile_tcp_client.sh
│   │   │   ├── mobile_tls_client_c2c_tcp_relay.sh
│   │   │   └── mobile_udp_client.sh
│   │   ├── oauth.sh
│   │   ├── pack.sh
│   │   ├── peer.sh
│   │   ├── readme.txt
│   │   ├── restapi
│   │   │   ├── secure_relay_secret.sh
│   │   │   ├── secure_relay_secret_with_db_mongo.sh
│   │   │   ├── secure_relay_secret_with_db_mysql.sh
│   │   │   ├── secure_relay_secret_with_db_psql.sh
│   │   │   ├── secure_relay_secret_with_db_redis.sh
│   │   │   ├── secure_relay_secret_with_db_sqlite.sh
│   │   │   ├── secure_udp_client_with_secret.sh
│   │   │   └── shared_secret_maintainer.pl
│   │   └── selfloadbalance
│   │   ├── secure_dos_attack.sh
│   │   └── secure_relay.sh
│   ├── man
│   │   └── man1
│   │   ├── coturn.1.gz
│   │   ├── turnadmin.1.gz
│   │   ├── turnserver.1.gz
│   │   ├── turnutils.1.gz
│   │   ├── turnutils_natdiscovery.1.gz
│   │   ├── turnutils_oauth.1.gz
│   │   ├── turnutils_peer.1.gz
│   │   ├── turnutils_stunclient.1.gz
│   │   └── turnutils_uclient.1.gz
│   └── turnserver
│   ├── schema.mongo.sh
│   ├── schema.sql
│   ├── schema.stats.redis
│   ├── schema.userdb.redis
│   ├── testmongosetup.sh
│   ├── testredisdbsetup.sh
│   └── testsqldbsetup.sql
└── var
└── db
25 directories, 96 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment