Skip to content
This repository has been archived by the owner on May 26, 2022. It is now read-only.

Commit

Permalink
add mutex for write/close
Browse files Browse the repository at this point in the history
  • Loading branch information
vyzo committed Dec 17, 2019
1 parent 3098bba commit f6ca84a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions conn_native.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ type Conn struct {
DefaultMessageType int
reader io.Reader
closeOnce sync.Once
mx sync.Mutex
}

func (c *Conn) Read(b []byte) (int, error) {
Expand Down Expand Up @@ -67,6 +68,9 @@ func (c *Conn) prepNextReader() error {
}

func (c *Conn) Write(b []byte) (n int, err error) {
c.mx.Lock()
defer c.mx.Unlock()

if err := c.Conn.WriteMessage(c.DefaultMessageType, b); err != nil {
return 0, err
}
Expand All @@ -78,6 +82,9 @@ func (c *Conn) Write(b []byte) (n int, err error) {
// close error, subsequent and concurrent calls will return nil.
// This method is thread-safe.
func (c *Conn) Close() error {
c.mx.Lock()
defer c.mx.Unlock()

var err error
c.closeOnce.Do(func() {
err1 := c.Conn.WriteControl(
Expand Down

0 comments on commit f6ca84a

Please sign in to comment.