mirror of https://bitbucket.org/ausocean/av.git
Created go RTMPChunk struct
This commit is contained in:
parent
c071981cfb
commit
5c8274786c
|
@ -212,6 +212,13 @@ type RTMPSockBuf struct {
|
||||||
sb_ssl uintptr
|
sb_ssl uintptr
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type RTMPChunk struct {
|
||||||
|
c_headerSize int
|
||||||
|
c_chunkSize int
|
||||||
|
c_chunk *byte
|
||||||
|
c_header [RTMP_MAX_HEADER_SIZE]byte
|
||||||
|
}
|
||||||
|
|
||||||
var _ Session = (*session)(nil)
|
var _ Session = (*session)(nil)
|
||||||
|
|
||||||
// NewSession returns a new session.
|
// NewSession returns a new session.
|
||||||
|
|
Loading…
Reference in New Issue