type ServerConfig struct { SERVERPORT int TCPFORWORD tcpForword}type tcpForword struct { XMLName xml.Name `xml:"TCPFORWORD"` TARGETS []tcpTarget `xml:"TARGET"`}type tcpTarget struct { XMLName xml.Name `xml:"TARGET"` IP string `xml:"IP,attr"` PORT string `xml:"PORT,attr"`}