mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-13 20:11:19 -04:00
prepare IceServerList client flag (#24)
This commit is contained in:
parent
d2e61e315c
commit
3ec771df01
2 changed files with 19 additions and 0 deletions
|
@ -22,6 +22,7 @@ var ptInfo pt.ClientInfo
|
|||
// var logFile *os.File
|
||||
var brokerURL string
|
||||
var frontDomain string
|
||||
var iceServers IceServerList
|
||||
|
||||
// When a connection handler starts, +1 is written to this channel; when it
|
||||
// ends, -1 is written.
|
||||
|
@ -109,6 +110,7 @@ func handler(conn *pt.SocksConn) error {
|
|||
|
||||
// TODO: Make SOCKS acceptance more independent from WebRTC so they can
|
||||
// be more easily interchanged.
|
||||
|
||||
copyLoop(conn, remote)
|
||||
// <-remote.endChannel
|
||||
log.Println("----END---")
|
||||
|
@ -161,6 +163,7 @@ func main() {
|
|||
webrtc.SetLoggingVerbosity(1)
|
||||
flag.StringVar(&brokerURL, "url", "", "URL of signaling broker")
|
||||
flag.StringVar(&frontDomain, "front", "", "front domain")
|
||||
flag.Var(&iceServers, "ice", "comma-separated list of ICE servers")
|
||||
flag.Parse()
|
||||
logFile, err := os.OpenFile("snowflake.log", os.O_CREATE|os.O_APPEND|os.O_WRONLY, 0600)
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue