(key net.Conn, value byte)
| 68 | } |
| 69 | |
| 70 | func (lo *LastOperation) Store(key net.Conn, value byte) { |
| 71 | lo.Lock() |
| 72 | lo.operations[key] = value |
| 73 | lo.Unlock() |
| 74 | } |
| 75 | |
| 76 | // This map is used to store the server greetings for each connection. |
| 77 | // It helps us to determine the server version and capabilities. |
no outgoing calls