-
Notifications
You must be signed in to change notification settings - Fork 12
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
マルチ転送フィルターの追加 #108
Open
torikizi
wants to merge
14
commits into
develop
Choose a base branch
from
feature/add-forwarding-filters
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+119
−60
Open
マルチ転送フィルターの追加 #108
Changes from 13 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
0a6b657
転送フィルターを複数指定可能にし name / priority を追加
torikizi 874c8fe
proto の順番に誤りがあったので修正
torikizi 8292815
has_forwarding_filters() の内容修正
torikizi a515d82
List を用意すれば良さそう
torikizi dbeea61
name / priority を送信するように修正
torikizi 0d3cb34
マルチ転送フィルター用に設定を見直す
torikizi 6aa7560
public ForwardingFilters に修正して他のメンバも見直す
torikizi 219a3df
タイポ修正
torikizi 5cf82fe
Internal を外す
torikizi 16a605c
シンプルな構成に見直し
torikizi 3c9e699
変更履歴を更新
torikizi c55e160
転送フィルターの設定方法をまとめる
torikizi d88a3cd
共通化して不要になった部分を整える
torikizi 0e8f309
不要な定義が残っていた
torikizi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,8 @@ message DataChannel { | |
|
||
message ForwardingFilter { | ||
optional string action = 2; | ||
optional string name = 4; | ||
optional int32 priority = 6; | ||
message Rule { | ||
string field = 1; | ||
string op = 2; | ||
|
@@ -27,6 +29,10 @@ message ForwardingFilter { | |
optional string metadata = 7; | ||
} | ||
|
||
message ForwardingFilters { | ||
repeated ForwardingFilter filters = 1; | ||
} | ||
|
||
message CameraConfig { | ||
int32 capturer_type = 17; | ||
int64 unity_camera_texture = 18; | ||
|
@@ -80,6 +86,7 @@ message ConnectConfig { | |
string audio_streaming_language_code = 48; | ||
string signaling_notify_metadata = 49; | ||
optional ForwardingFilter forwarding_filter = 51; | ||
optional ForwardingFilters forwarding_filters = 52; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 書けないようです。ビルドエラーとなりました。 |
||
optional bool use_hardware_encoder = 53; | ||
optional string client_cert = 54; | ||
optional string client_key = 55; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
これ要らないですよね…?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
失礼しました。ご指摘の通り不要でした。