(src, dst string)
| 37 | } |
| 38 | |
| 39 | func (n *NATTable) Get(src, dst string) string { |
| 40 | n.Lock.Lock() |
| 41 | defer n.Lock.Unlock() |
| 42 | s, _ := n.Table[src+dst] |
| 43 | return s |
| 44 | } |
| 45 | |
| 46 | func (n *NATTable) Reset() { |
| 47 | n.Lock.Lock() |
no outgoing calls
no test coverage detected