1234567891011121314151617181920212223242526 |
- package libbox
- import (
- "encoding/binary"
- "net"
- runtimeDebug "runtime/debug"
- "time"
- )
- func (c *CommandClient) CloseConnections() error {
- conn, err := c.directConnect()
- if err != nil {
- return err
- }
- defer conn.Close()
- return binary.Write(conn, binary.BigEndian, uint8(CommandCloseConnections))
- }
- func (s *CommandServer) handleCloseConnections(conn net.Conn) error {
- tracker.Close()
- go func() {
- time.Sleep(time.Second)
- runtimeDebug.FreeOSMemory()
- }()
- return nil
- }
|