You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
352 B
Go
13 lines
352 B
Go
package request
|
|
|
|
import (
|
|
internalprotocol "git.noahlan.cn/noahlan/nnet/v2/internal/protocol"
|
|
requestpkg "git.noahlan.cn/noahlan/nnet/v2/pkg/request"
|
|
)
|
|
|
|
// newFrameHeader 创建新的协议帧头(内部使用)
|
|
// 使用统一的protocol.FrameHeader实现
|
|
func newFrameHeader() requestpkg.FrameHeader {
|
|
return internalprotocol.NewFrameHeader()
|
|
}
|