ios developer
ios developer

Reputation: 3473

routing the network over ipv4 instead of ipv6 in iOS

I am using the 3rd party library which only support ipv4. Whenever there is ipv6 network in my iOs device 3rd party fail.Is there any way I can force or convert or create ipv4 network and do routineg of the application in ipv4 instead of ipv6. I found the below link but don't know how to implement it or does apple will approve that. https://developer.apple.com/documentation/networkextension/neipv4route

Any help on this please

Upvotes: 0

Views: 1551

Answers (1)

Flightdoc5242
Flightdoc5242

Reputation: 209

I think you’ve answered your own question. The library your using only supports ipv4. So either you need to find a library that supports ipv6 or write your own since you can’t control what the network is broadcasting.

Apple has a write up on this here : supporting ipv6

Upvotes: 2

Related Questions