blob: 92741de9e376ba20136311f247aa7be5b806b6d6 [file] [log] [blame]
Matteo Scandolo3bc73742019-08-20 14:04:04 -07001/*
Joey Armstrong2c039362024-02-04 18:51:52 -05002 * Copyright 2018-2024 Open Networking Foundation (ONF) and the ONF Contributors
Matteo Scandolo3bc73742019-08-20 14:04:04 -07003
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7
8 * http://www.apache.org/licenses/LICENSE-2.0
9
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package types
18
Matteo Scandolo86e8ce62019-10-11 12:03:10 -070019import (
20 "github.com/google/gopacket"
21)
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -070022
Matteo Scandolo27428702019-10-11 16:21:16 -070023// deprecated, use OnuPacketOutMessage instead
Matteo Scandolo3bc73742019-08-20 14:04:04 -070024type ByteMsg struct {
25 IntfId uint32
26 OnuId uint32
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -070027 Bytes []byte
28}
29
30type PacketMsg struct {
31 Pkt gopacket.Packet
32}