golanggohlsrtmpwebrtcmedia-serverobs-studiortcprtmp-proxyrtmp-serverrtprtsprtsp-proxyrtsp-relayrtsp-serversrtstreamingwebrtc-proxy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.0 KiB
63 lines
1.0 KiB
package conf |
|
|
|
import ( |
|
"encoding/json" |
|
"fmt" |
|
) |
|
|
|
// Encryption is the encryption parameter. |
|
type Encryption int |
|
|
|
// values. |
|
const ( |
|
EncryptionNo Encryption = iota |
|
EncryptionOptional |
|
EncryptionStrict |
|
) |
|
|
|
// MarshalJSON implements json.Marshaler. |
|
func (d Encryption) MarshalJSON() ([]byte, error) { |
|
var out string |
|
|
|
switch d { |
|
case EncryptionNo: |
|
out = "no" |
|
|
|
case EncryptionOptional: |
|
out = "optional" |
|
|
|
default: |
|
out = "strict" |
|
} |
|
|
|
return json.Marshal(out) |
|
} |
|
|
|
// UnmarshalJSON implements json.Unmarshaler. |
|
func (d *Encryption) UnmarshalJSON(b []byte) error { |
|
var in string |
|
if err := json.Unmarshal(b, &in); err != nil { |
|
return err |
|
} |
|
|
|
switch in { |
|
case "no", "false": |
|
*d = EncryptionNo |
|
|
|
case "optional": |
|
*d = EncryptionOptional |
|
|
|
case "strict", "yes", "true": |
|
*d = EncryptionStrict |
|
|
|
default: |
|
return fmt.Errorf("invalid encryption: '%s'", in) |
|
} |
|
|
|
return nil |
|
} |
|
|
|
// UnmarshalEnv implements env.Unmarshaler. |
|
func (d *Encryption) UnmarshalEnv(_ string, v string) error { |
|
return d.UnmarshalJSON([]byte(`"` + v + `"`)) |
|
}
|
|
|