mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +03:00
24 lines
330 B
Go
24 lines
330 B
Go
package common
|
|
|
|
import "io"
|
|
|
|
type Flusher interface {
|
|
Flush() error
|
|
}
|
|
|
|
func Flush(writer io.Writer) error {
|
|
for {
|
|
if f, ok := writer.(Flusher); ok {
|
|
err := f.Flush()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if u, ok := writer.(WriterWithUpstream); ok {
|
|
writer = u.Upstream()
|
|
} else {
|
|
break
|
|
}
|
|
}
|
|
return nil
|
|
}
|