mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
generate the streamI mock in the quic package
By doing so, we can mock private methods of the stream, so they cannot be type-asserted by users of quic-go.
This commit is contained in:
parent
54ac21fbef
commit
d2e31c04ab
19 changed files with 301 additions and 301 deletions
|
@ -220,7 +220,7 @@ func (m *streamsMap) DeleteClosedStreams() error {
|
|||
if !ok {
|
||||
return errMapAccess
|
||||
}
|
||||
if !str.Finished() {
|
||||
if !str.finished() {
|
||||
continue
|
||||
}
|
||||
numDeletedStreams++
|
||||
|
@ -317,7 +317,7 @@ func (m *streamsMap) CloseWithError(err error) {
|
|||
m.nextStreamOrErrCond.Broadcast()
|
||||
m.openStreamOrErrCond.Broadcast()
|
||||
for _, s := range m.openStreams {
|
||||
m.streams[s].CloseForShutdown(err)
|
||||
m.streams[s].closeForShutdown(err)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue