Results 27 comments of leeyi

如何实现“让调用者接收到网络请求事件,比如,开始解析 DNS 事件,解析 DNS 结束的事件等等” How to implement "let the caller receive the network request event, e.g., the DNS resolution event starts, the DNS resolution event ends, etc."

replace into 需要支持

期望官方的 type ILogger interface 支持 go.uber.org/zap

我是这么解决问题,有效避免了你说的问题 ``` package lib import ( _ "github.com/go-sql-driver/mysql" "github.com/gohouse/gorose/v2" "sync" ) type SDBModule struct { sync.RWMutex Map map[string]*gorose.Engin } func (sdb *SDBModule) readMap(module string) *gorose.Engin { sdb.RLock() eg, _ :=...

The answer to the issue is in Q&A - https://github.com/flutter-webrtc/flutter-webrtc/discussions/1026.

> 0.9.2 I used flutter-webrtc 0.9.2 and the error "webrtc/webrtc. H file not found" was reported in the iOS simulator. Then I use the method of https://github.com/flutter-webrtc/flutter-webrtc/discussions/1026, no error

Your code is different from this "snippet begin ... snippet end " : ``` #... post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_settings(target) # snippet begin if target.name == "WebRTC-SDK" target.build_configurations.each...

> To be 100% certain I tried all variants including the snippet above I now followed these steps and still get the error. Since it's a new project there was...