Skip to content

Commit

Permalink
Syncing protocol buffers (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
gi-wg2 authored Sep 26, 2024
1 parent 500d07a commit 6a26c85
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 142 deletions.
140 changes: 0 additions & 140 deletions wgtwo/data/v1/content_filtering.proto

This file was deleted.

1 change: 1 addition & 0 deletions wgtwo/sim/v0/authentication.proto
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
//

syntax = "proto3";

package wgtwo.sim.v0;
Expand Down
13 changes: 11 additions & 2 deletions wgtwo/subscription/v0/network_info.proto
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
//

syntax = "proto3";

package wgtwo.subscription.v0;
Expand Down Expand Up @@ -70,8 +71,8 @@ message AttachmentAttempt {
wgtwo.common.v0.NetworkIdentity network_identity = 4;
wgtwo.common.v0.NetworkGeneration network_generation = 5;

// TADIG code, if present
// May be empty
// TADIG code, if present.
// May be empty.
wgtwo.common.v0.Tadig tadig = 6;
Status status = 7;
}
Expand Down Expand Up @@ -104,12 +105,20 @@ message NetworkInfo {
}

enum Code {
// Is the default value and will not be used.
CODE_UNSPECIFIED = 0;
// Indicates that the attachment was successful.
CODE_OK = 1;
// Currently not used.
CODE_ABSENT_PROFILE = 2;
// Currently not used.
CODE_ABSENT_SUBSCRIBER = 3;
// Indicates that the subscriber was not allowed to attach because it is not provisioned on the platform.
CODE_UNKNOWN_PROFILE = 4;
// Indicates that the subscriber was not allowed to attach because it is inactive/blocked.
CODE_BLOCKED_PROFILE = 5;
// Indicates that the subscriber was not allowed to attach because it either was missing the roaming services or
// because the roaming profile of the subscriber did not allow the it to roam at that location.
CODE_ROAMING_NOT_ALLOWED = 6;
}

Expand Down

0 comments on commit 6a26c85

Please sign in to comment.