mirror of
https://github.com/cnotch/ipchub.git
synced 2025-09-26 19:41:18 +08:00
11 lines
254 B
Go
11 lines
254 B
Go
// Copyright (c) 2019,CAOHONGJU All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package format
|
|
|
|
// Packet 表示流媒体包
|
|
type Packet interface {
|
|
Size() int // 包长度
|
|
}
|