1.1.2 • Published 2 years ago

react-native-vpn-ipsec v1.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

react-native-vpn-ipsec

Getting started

Plugin can be installed using npm With yarn: $ yarn add react-native-vpn-ipsec --save Or with npm: $ npm install react-native-vpn-ipsec --save

Mostly automatic installation

on react native >60 no need to do anything but for manualing installation run the code below

$ react-native link react-native-vpn-ipsec

Example

To run example:

  • make sure the module folder has no node_modules
  • install the dependencies on the example folder using yarn or npm i
  • run the project:
npx react-native run-android

Usage

import { saveConfig, prepare, connect } from "react-native-vpn-ipsec";
...
useEffect(() => {
	prepare();
}); /// or use componentDidmount in case of a class component
...
connect(name, address, username, password,  secret, disconnectOnSleep)

saveConfig(name, address, username, password,  secret)

see example folder.

Methods

NameargumentsreturnsDescription
prepareNonePromiseAndroid: This will ask permission and do necessary setupsIOS: This will listen for status change on vpn
connectaddress: string (address of VPN)username: string (username of VPN's credentials)password: string (username of VPN's credentials)vpnType: string | undefined (Android only, not implemented yet)mtu: number | undefiend (Android only, VPN's maximum transmission unit)PromiseConnect to vpn with provided credentials
getCurrentStateNonePromiseGet current VPN state
getCharonErrorState (Android only)NonePromiseGet current VPN Error state (Android only)
disconnectNonePromiseDisconnect the VPN
onStateChangedListenercallback: (state: { state: VpnState; charonState: CharonErrorState }) => voidEmitterSubscriptionWill call the callback on state change
removeOnStateChangeListenerstateChangedEvent: EmitterSubscriptionvoidRemove the state change listener

Enums

NameValuesDescription
VpnStatedisconnected = 0 (VPN is disconnected)connecting = 1 (VPN is connecting)connected = 2 (VPN is connected)disconnecting = 3 (VPN is disconnecting)genericError = 4 (VPN encountered an error charon state on android to find out the error)VPN current state
CharonErrorStateNO_ERROR = 0 (VPN has no error)AUTH_FAILED = 1 (Wrong credentials)PEER_AUTH_FAILED = 2LOOKUP_FAILED = 3 (Wrong VPN URL)UNREACHABLE = 4 (VPN URL is unreachable)GENERIC_ERROR = 5PASSWORD_MISSING = 6 (No password has been provided)CERTIFICATE_UNAVAILABLE = 7 (Certification has not been provided)UNDEFINED = 8 (Unknown error)VPN Error
1.1.1

2 years ago

1.1.2

2 years ago

1.1.0

2 years ago

1.0.22

2 years ago

1.0.21

2 years ago

1.0.20

2 years ago

1.0.19

2 years ago

1.0.18

2 years ago

1.0.17

3 years ago

1.0.16

3 years ago

1.0.15

3 years ago

1.0.13

3 years ago

1.0.12

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago