IAOTW

Results 11 comments of IAOTW

https://github.com/spacemonkeygo/openssl/issues/148

我也与@JesseStutler有同样的问题 seq, err := client.registerCall(call) if err != nil { call.Error = err call.done() return } // prepare request header client.header.ServiceMethod = call.ServiceMethod client.header.Seq = seq client.header.Error = "" 在send()方法里面,client.pending中是可以有多个call的,为啥client.header字段需要跟随call的变化而变化呀

@liyuxuan89 不太懂为啥会泄露,是需要在case

client.sending.Lock() defer client.sending.Unlock() client.mu.Lock() defer client.mu.Unlock() 问题1:不太理解为啥terminateCalls方法,需要sending和mu两把锁,而注册call和删除call,只需要mu锁? 问题2:当client的某一个字段比如sending Lock()时,是不是在unlock()之前,这个client对象的sending字段是线程安全的,不会被其他线程或协程访问到吗?

OK,thanks!

因为没写完呢 我没有账号测试了

修改下配置试试,参照配置文件里云主机的配置

请问解决了吗,我也是内网部署,配置http_proxy访问market,而且旧版本正常访问,升级后跟你一模一样的问题,求help!

@jskcnsl @camucamulemon7 @kouyakamada Update the configurations in the .env file: ``` # SSRF Proxy server HTTP URL # SSRF_PROXY_HTTP_URL=http://ssrf_proxy:3128 SSRF_PROXY_HTTP_URL=${your http_proxy} # SSRF Proxy server HTTPS URL # SSRF_PROXY_HTTPS_URL=http://ssrf_proxy:3128 SSRF_PROXY_HTTPS_URL=${your...