| 12 | var ErrInvalidParameter = fmt.Errorf("invalid parameters") |
| 13 | |
| 14 | type ServerObj interface { |
| 15 | Configuration(info PriorInfo) (c Configuration, err error) |
| 16 | ExportToURL() string |
| 17 | NeedPluginPort() bool |
| 18 | ProtoToShow() string |
| 19 | GetProtocol() string |
| 20 | GetHostname() string |
| 21 | GetPort() int |
| 22 | GetName() string |
| 23 | SetName(name string) |
| 24 | } |
| 25 | |
| 26 | type Configuration struct { |
| 27 | CoreOutbound coreObj.OutboundObject |
no outgoing calls
no test coverage detected