MCPcopy
hub / github.com/claude-code-best/claude-code / configureGlobalMTLS

Function configureGlobalMTLS

src/utils/mtls.ts:166–179  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

164 * Configure global Node.js TLS settings
165 */
166export function configureGlobalMTLS(): void {
167 const mtlsConfig = getMTLSConfig()
168
169 if (!mtlsConfig) {
170 return
171 }
172
173 // NODE_EXTRA_CA_CERTS is automatically handled by Node.js at runtime
174 if (process.env.NODE_EXTRA_CA_CERTS) {
175 logForDebugging(
176 'NODE_EXTRA_CA_CERTS detected - Node.js will automatically append to built-in CAs',
177 )
178 }
179}

Callers 1

init.tsFile · 0.85

Calls 1

logForDebuggingFunction · 0.70

Tested by

no test coverage detected