mirror of
https://github.com/pion/webrtc.git
synced 2025-09-27 03:25:58 +08:00
117 lines
2.9 KiB
Go
117 lines
2.9 KiB
Go
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
//go:build !js
|
|
// +build !js
|
|
|
|
// ice-tcp demonstrates Pion WebRTC's ICE TCP abilities.
|
|
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"net"
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/pion/webrtc/v4"
|
|
)
|
|
|
|
var api *webrtc.API //nolint
|
|
|
|
func doSignaling(res http.ResponseWriter, req *http.Request) { //nolint:cyclop
|
|
peerConnection, err := api.NewPeerConnection(webrtc.Configuration{})
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// Set the handler for ICE connection state
|
|
// This will notify you when the peer has connected/disconnected
|
|
peerConnection.OnICEConnectionStateChange(func(connectionState webrtc.ICEConnectionState) {
|
|
fmt.Printf("ICE Connection State has changed: %s\n", connectionState.String())
|
|
})
|
|
|
|
// Send the current time via a DataChannel to the remote peer every 3 seconds
|
|
peerConnection.OnDataChannel(func(d *webrtc.DataChannel) {
|
|
d.OnOpen(func() {
|
|
for range time.Tick(time.Second * 3) {
|
|
if err = d.SendText(time.Now().String()); err != nil {
|
|
if errors.Is(err, io.ErrClosedPipe) {
|
|
return
|
|
}
|
|
panic(err)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
|
|
var offer webrtc.SessionDescription
|
|
if err = json.NewDecoder(req.Body).Decode(&offer); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
if err = peerConnection.SetRemoteDescription(offer); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// Create channel that is blocked until ICE Gathering is complete
|
|
gatherComplete := webrtc.GatheringCompletePromise(peerConnection)
|
|
|
|
answer, err := peerConnection.CreateAnswer(nil)
|
|
if err != nil {
|
|
panic(err)
|
|
} else if err = peerConnection.SetLocalDescription(answer); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// Block until ICE Gathering is complete, disabling trickle ICE
|
|
// we do this because we only can exchange one signaling message
|
|
// in a production application you should exchange ICE Candidates via OnICECandidate
|
|
<-gatherComplete
|
|
|
|
response, err := json.Marshal(*peerConnection.LocalDescription())
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
res.Header().Set("Content-Type", "application/json")
|
|
if _, err := res.Write(response); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
//nolint:cyclop
|
|
func main() {
|
|
settingEngine := webrtc.SettingEngine{}
|
|
|
|
// Enable support only for TCP ICE candidates.
|
|
settingEngine.SetNetworkTypes([]webrtc.NetworkType{
|
|
webrtc.NetworkTypeTCP4,
|
|
webrtc.NetworkTypeTCP6,
|
|
})
|
|
|
|
tcpListener, err := net.ListenTCP("tcp", &net.TCPAddr{
|
|
IP: net.IP{0, 0, 0, 0},
|
|
Port: 8443,
|
|
})
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
fmt.Printf("Listening for ICE TCP at %s\n", tcpListener.Addr())
|
|
|
|
tcpMux := webrtc.NewICETCPMux(nil, tcpListener, 8)
|
|
settingEngine.SetICETCPMux(tcpMux)
|
|
|
|
api = webrtc.NewAPI(webrtc.WithSettingEngine(settingEngine))
|
|
|
|
http.Handle("/", http.FileServer(http.Dir(".")))
|
|
http.HandleFunc("/doSignaling", doSignaling)
|
|
|
|
fmt.Println("Open http://localhost:8080 to access this demo")
|
|
// nolint: gosec
|
|
panic(http.ListenAndServe(":8080", nil))
|
|
}
|