WithAllowCUPSURIUpdate configures the CUPS server to allow updates of the CUPS Server URI.
(allow bool)
| 113 | // WithAllowCUPSURIUpdate configures the CUPS server to allow updates of the CUPS |
| 114 | // Server URI. |
| 115 | func WithAllowCUPSURIUpdate(allow bool) Option { |
| 116 | return func(s *Server) { |
| 117 | s.allowCUPSURIUpdate = allow |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | // WithDefaultLNSURI configures the CUPS server with a default LNS URI to use when |
| 122 | // no Gateway Server address is registered for a gateway. |
no outgoing calls