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.
14 lines
341 B
Go
14 lines
341 B
Go
package request
|
|
|
|
import (
|
|
internalprotocol "github.com/noahlann/nnet/internal/protocol"
|
|
requestpkg "github.com/noahlann/nnet/pkg/request"
|
|
)
|
|
|
|
// newFrameHeader 创建新的协议帧头(内部使用)
|
|
// 使用统一的protocol.FrameHeader实现
|
|
func newFrameHeader() requestpkg.FrameHeader {
|
|
return internalprotocol.NewFrameHeader()
|
|
}
|
|
|