ss-abramchuk / OpenVPNAdapter

Objective-C wrapper for OpenVPN library. Compatible with iOS and macOS.
GNU Affero General Public License v3.0
473 stars 209 forks source link

Release Tag 0.7.0 doesn't compile #182

Closed houmie closed 4 years ago

houmie commented 4 years ago

Hi @ss-abramchuk

I have upgraded today from Release Tag 0.6.0 to 0.7.0 and it fails to build. It says Use of undeclared type 'OpenVPNProperties'

// Apply OpenVPN configuration
        let properties: OpenVPNProperties
        do {
            properties = try vpnAdapter.apply(configuration: configuration)
        } catch {
            completionHandler(error)
            return
        }

Using Master is the same. Hence I don't think this is fixed in master branch.

Many Thanks,

ss-abramchuk commented 4 years ago

Hi @houmie

Just rename OpenVPNProperties to OpenVPNConfigurationEvaluation

houmie commented 4 years ago

@ss-abramchuk It works, thank you so much.