ci: update network module based on commit 4f4b9bf

Change-Id: I5c3dda9e022e56131d4ea18e2ec06dc8179767c7
This commit is contained in:
gerrit 2024-12-05 14:17:33 +08:00 committed by Lane.Wei
parent 32796e6e4a
commit ddc7787089
1 changed files with 4 additions and 3 deletions

View File

@ -95,7 +95,7 @@ namespace BBL {
#define BAMBU_NETWORK_LIBRARY "bambu_networking"
#define BAMBU_NETWORK_AGENT_NAME "bambu_network_agent"
#define BAMBU_NETWORK_AGENT_VERSION "01.10.01.01"
#define BAMBU_NETWORK_AGENT_VERSION "01.10.01.02"
//iot preset type strings
#define IOT_PRINTER_TYPE_STRING "printer"
@ -253,11 +253,12 @@ struct CertificateInformation {
std::string serial_number;
};
enum class MessageFlag : int
{
MSG_FLAG_NONE = 0,
MSG_SIGN = 1 << 0,
MSG_ENCRYPT = 1 << 1,
MSG_SIGN = 1 << 0,
MSG_ENCRYPT = 1 << 1,
};
}