Client is an NTRIP v1 SOURCE client that pushes RTCM data to a caster.
| 93 | |
| 94 | // Client is an NTRIP v1 SOURCE client that pushes RTCM data to a caster. |
| 95 | type Client struct { |
| 96 | proxy *ProxyConfig |
| 97 | logger *slog.Logger |
| 98 | conn net.Conn |
| 99 | dump io.Writer |
| 100 | config Config |
| 101 | } |
| 102 | |
| 103 | // NewClient creates a new NTRIP client with the given configuration. |
| 104 | func NewClient(cfg Config, opts ...Option) *Client { |
nothing calls this directly
no outgoing calls
no test coverage detected