caozhiyuan / FastDFSNetCore

FastDFS Async Client
Apache License 2.0
65 stars 23 forks source link

Replace IPEndPoint with EndPoint #7

Closed Rwing closed 5 years ago

Rwing commented 5 years ago

For example, if I want use new DnsEndPoint("fastdfs.domain.com", 22122)

caozhiyuan commented 5 years ago

change Initialize(List<EndPoint> trackers) to IEnumerable<EndPoint> to compatible with old version List<IPEndPoint> . @Rwing

Rwing commented 5 years ago

Sorry, it's my mistake and it's fixed now.