Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sumomo の証明書に関するオプション追加について CHANGES と README に記載する #125

Merged
merged 6 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,13 @@

- [UPDATE] SDL2 を 2.30.7 にあげる
- @voluntas

- [ADD] sumomo に証明書に関するオプションを追加する
- サーバー証明書の検証を行わないようにするオプション `--insecure` を追加
- CA 証明書を指定するオプション `--ca-cert` を追加
- 指定できるファイルは PEM 形式
- クライアント証明書に関するオプション `--client-cert`, `--client-key` を追加
zztkm marked this conversation as resolved.
Show resolved Hide resolved
- 指定できるファイルは PEM 形式
- @melpon

## 2024.7.0

Expand Down
11 changes: 10 additions & 1 deletion examples/sumomo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ Windows 以外の場合
- `--openh264` : openh264 ライブラリのパスをフルパスで指定します
- デコードには対応していません


#### Sora に関するオプション

設定内容については [Sora のドキュメント](https://sora-doc.shiguredo.jp/SIGNALING) も参考にしてください。
Expand Down Expand Up @@ -231,6 +230,16 @@ Windows 以外の場合
- `--show-me`
- 送信している自分の映像を表示します

#### 証明書に関するオプション

- `--insecure` : サーバー証明書の検証を行わないようにするフラグ
- 未指定の場合は、サーバー証明書の検証を行います
- `--ca-cert` : CA 証明書ファイル
- `--client-cert` : クライアント証明書ファイル
- `--client-key` : クライアント鍵ファイル
zztkm marked this conversation as resolved.
Show resolved Hide resolved

`--ca-cert`, `--client-cert`, `--client-key` には、PEM 形式のファイルを指定してください。

#### その他のオプション

- `--help`
Expand Down