blob: 6dde67d94baec3df167b13bfa49701876993a65d [file] [log] [blame]
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#pragma once
#include <arpa/inet.h>
#include <sys/socket.h>
#include <cstdint>
#include <cstdio>
#include <cstring>
#include <memory>
#include <vector>
#define MAC_ADDR_SIZE 6
struct MacAddr
{
std::uint8_t octet[MAC_ADDR_SIZE]; // network order
};
enum class NemoraDatagramType
{
NemoraEvent,
};
/**
* Encompasses all valid outbound UDP messages
*/
struct NemoraDatagram
{
// destination
sockaddr_in destination;
sockaddr_in6 destination6;
// type
NemoraDatagramType type;
std::vector<uint8_t> payload;
};
/**
* Event information as broadcast to System Health Data Collector
*/
struct NemoraEvent : NemoraDatagram
{
std::uint8_t mac[MAC_ADDR_SIZE];
std::uint64_t sent_time_s;
std::vector<uint64_t> postcodes;
};