15 lines
369 B
Go
15 lines
369 B
Go
package common
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/schollz/croc/v5/internal/session"
|
|
)
|
|
|
|
// Configuration common to both Sender and Receiver session
|
|
type Configuration struct {
|
|
SDPProvider io.Reader // The SDP reader
|
|
SDPOutput io.Writer // The SDP writer
|
|
OnCompletion session.CompletionHandler // Handler to call on session completion
|
|
}
|