mirror of
https://github.com/Telecominfraproject/wlan-cloud-opensync-protobuf.git
synced 2025-10-29 17:52:36 +00:00
Update to align to changes in event proto
This commit is contained in:
84
.github/workflows/maven_settings_template.xml
vendored
84
.github/workflows/maven_settings_template.xml
vendored
@@ -1,47 +1,47 @@
|
||||
<settings>
|
||||
<servers>
|
||||
<server>
|
||||
<id>tip-wlan-cloud-maven-repo</id>
|
||||
<username>${env.MAVEN_REPO_USERNAME}</username>
|
||||
<password>${env.MAVEN_REPO_PASSWORD}</password>
|
||||
</server>
|
||||
<server>
|
||||
<id>jfrog-spring-milestones</id>
|
||||
<username>${env.MAVEN_REPO_USERNAME}</username>
|
||||
<password>${env.MAVEN_REPO_PASSWORD}</password>
|
||||
</server>
|
||||
<server>
|
||||
<id>jfrog-maven-central</id>
|
||||
<username>${env.MAVEN_REPO_USERNAME}</username>
|
||||
<password>${env.MAVEN_REPO_PASSWORD}</password>
|
||||
</server>
|
||||
</servers>
|
||||
<mirrors>
|
||||
<mirror>
|
||||
<id>jfrog-maven-central</id>
|
||||
<name>Mirror Repository</name>
|
||||
<url>https://tip.jfrog.io/artifactory/maven-central</url>
|
||||
<mirrorOf>central</mirrorOf>
|
||||
</mirror>
|
||||
<mirror>
|
||||
<id>jfrog-spring-milestones</id>
|
||||
<url>https://tip.jfrog.io/artifactory/spring-milestones</url>
|
||||
<mirrorOf>spring-milestones</mirrorOf>
|
||||
</mirror>
|
||||
</mirrors>
|
||||
<servers>
|
||||
<server>
|
||||
<id>tip-wlan-cloud-maven-repo</id>
|
||||
<username>${env.MAVEN_REPO_USERNAME}</username>
|
||||
<password>${env.MAVEN_REPO_PASSWORD}</password>
|
||||
</server>
|
||||
<server>
|
||||
<id>jfrog-spring-milestones</id>
|
||||
<username>${env.MAVEN_REPO_USERNAME}</username>
|
||||
<password>${env.MAVEN_REPO_PASSWORD}</password>
|
||||
</server>
|
||||
<server>
|
||||
<id>jfrog-maven-central</id>
|
||||
<username>${env.MAVEN_REPO_USERNAME}</username>
|
||||
<password>${env.MAVEN_REPO_PASSWORD}</password>
|
||||
</server>
|
||||
</servers>
|
||||
<mirrors>
|
||||
<mirror>
|
||||
<id>jfrog-maven-central</id>
|
||||
<name>Mirror Repository</name>
|
||||
<url>https://tip.jfrog.io/artifactory/maven-central</url>
|
||||
<mirrorOf>central</mirrorOf>
|
||||
</mirror>
|
||||
<mirror>
|
||||
<id>jfrog-spring-milestones</id>
|
||||
<url>https://tip.jfrog.io/artifactory/spring-milestones</url>
|
||||
<mirrorOf>spring-milestones</mirrorOf>
|
||||
</mirror>
|
||||
</mirrors>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>schema-publisher</id>
|
||||
<properties>
|
||||
<schema-repository-user>${env.MAVEN_REPO_USERNAME}</schema-repository-user>
|
||||
<schema-repository-password>${env.MAVEN_REPO_PASSWORD}</schema-repository-password>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>schema-publisher</id>
|
||||
<properties>
|
||||
<schema-repository-user>${env.MAVEN_REPO_USERNAME}</schema-repository-user>
|
||||
<schema-repository-password>${env.MAVEN_REPO_PASSWORD}</schema-repository-password>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<activeProfiles>
|
||||
<activeProfile>schema-publisher</activeProfile>
|
||||
</activeProfiles>
|
||||
<activeProfiles>
|
||||
<activeProfile>schema-publisher</activeProfile>
|
||||
</activeProfiles>
|
||||
|
||||
</settings>
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -23,3 +23,4 @@ build.log
|
||||
*.tar.gz
|
||||
|
||||
*.pydevproject
|
||||
/target/
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -715,6 +715,7 @@ message EventReport {
|
||||
optional bool using11k = 9;
|
||||
optional bool using11r = 10;
|
||||
optional bool using11v = 11;
|
||||
optional uint32 timestamp_ms = 12;
|
||||
}
|
||||
|
||||
/* Client Authentication Event */
|
||||
@@ -724,6 +725,7 @@ message EventReport {
|
||||
optional string ssid = 3;
|
||||
optional RadioBandType band = 4;
|
||||
optional uint32 auth_status = 5;
|
||||
optional uint32 timestamp_ms = 6;
|
||||
}
|
||||
|
||||
/* Client Disconnect Event */
|
||||
@@ -739,6 +741,7 @@ message EventReport {
|
||||
optional int32 rssi = 9;
|
||||
optional string ssid = 10;
|
||||
optional RadioBandType band = 11;
|
||||
optional uint32 timestamp_ms = 12;
|
||||
}
|
||||
|
||||
/* Client Connnect Event */
|
||||
@@ -763,6 +766,7 @@ message EventReport {
|
||||
optional bool using11v = 18;
|
||||
optional int64 ev_time_bootup_in_us_ip = 19;
|
||||
optional int32 assoc_rssi = 20;
|
||||
optional uint32 timestamp_ms = 21;
|
||||
}
|
||||
|
||||
/* Client Failure Event */
|
||||
@@ -772,6 +776,7 @@ message EventReport {
|
||||
optional string ssid = 3;
|
||||
optional int32 reason_code = 4;
|
||||
optional string reason_str = 5;
|
||||
optional uint32 timestamp_ms = 6;
|
||||
}
|
||||
|
||||
/* Client First Data Event */
|
||||
@@ -780,6 +785,7 @@ message EventReport {
|
||||
optional uint64 session_id = 2;
|
||||
optional uint64 fdata_tx_up_ts_in_us = 3;
|
||||
optional uint64 fdata_rx_up_ts_in_us = 4;
|
||||
optional uint32 timestamp_ms = 5;
|
||||
}
|
||||
|
||||
/* Client Id Event */
|
||||
@@ -787,6 +793,7 @@ message EventReport {
|
||||
optional string clt_mac = 1;
|
||||
optional uint64 session_id = 2;
|
||||
optional string clt_id = 3;
|
||||
optional uint32 timestamp_ms = 4;
|
||||
}
|
||||
|
||||
/* Client IP Event */
|
||||
@@ -794,6 +801,7 @@ message EventReport {
|
||||
optional string sta_mac = 1;
|
||||
optional uint64 session_id = 2;
|
||||
optional bytes ip_addr = 3;
|
||||
optional uint32 timestamp_ms = 4;
|
||||
}
|
||||
|
||||
/* Client Timeout Event */
|
||||
@@ -803,6 +811,7 @@ message EventReport {
|
||||
optional CTReasonType r_code = 3;
|
||||
optional uint64 last_sent_up_ts_in_us = 4;
|
||||
optional uint64 last_rcv_up_ts_in_us = 5;
|
||||
optional uint32 timestamp_ms = 6;
|
||||
}
|
||||
|
||||
/* Client Session */
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<toolchains>
|
||||
<!-- protocol buffer 2.6.1 -->
|
||||
<toolchain>
|
||||
<type>protobuf</type>
|
||||
<provides>
|
||||
<version>3.12.4</version>
|
||||
<vendor>google</vendor>
|
||||
</provides>
|
||||
<configuration>
|
||||
<protocExecutable>/home/runner/protobuf-3.12.4-bin/bin/protoc</protocExecutable>
|
||||
</configuration>
|
||||
</toolchain>
|
||||
<!-- protocol buffer 2.6.1 -->
|
||||
<toolchain>
|
||||
<type>protobuf</type>
|
||||
<provides>
|
||||
<version>3.12.4</version>
|
||||
<vendor>google</vendor>
|
||||
</provides>
|
||||
<configuration>
|
||||
<protocExecutable>/home/runner/protobuf-3.12.4-bin/bin/protoc</protocExecutable>
|
||||
</configuration>
|
||||
</toolchain>
|
||||
</toolchains>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user