File indexing completed on 2024-04-28 16:52:51

0001 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
0002 /* nm-pptp-service - PPTP VPN integration with NetworkManager
0003 
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 
0007     SPDX-FileCopyrightText: Dan Williams <dcbw@redhat.com>
0008     SPDX-FileCopyrightText: 2008 Red Hat Inc. //krazy:exclude=copyright
0009 */
0010 
0011 #ifndef NM_PPTP_SERVICE_H
0012 #define NM_PPTP_SERVICE_H
0013 
0014 #define NM_DBUS_SERVICE_PPTP_PPP "org.freedesktop.NetworkManager.pptp-ppp"
0015 #define NM_DBUS_PATH_PPTP_PPP "/org/freedesktop/NetworkManager/pptp/ppp"
0016 #define NM_DBUS_INTERFACE_PPTP_PPP "org.freedesktop.NetworkManager.pptp.ppp"
0017 
0018 /* For the NM <-> VPN plugin service */
0019 #define NM_DBUS_SERVICE_PPTP "org.freedesktop.NetworkManager.pptp"
0020 #define NM_DBUS_INTERFACE_PPTP "org.freedesktop.NetworkManager.pptp"
0021 #define NM_DBUS_PATH_PPTP "/org/freedesktop/NetworkManager/pptp"
0022 
0023 #define NM_PPTP_KEY_GATEWAY "gateway"
0024 #define NM_PPTP_KEY_USER "user"
0025 #define NM_PPTP_KEY_PASSWORD "password"
0026 #define NM_PPTP_KEY_DOMAIN "domain"
0027 #define NM_PPTP_KEY_REFUSE_EAP "refuse-eap"
0028 #define NM_PPTP_KEY_REFUSE_PAP "refuse-pap"
0029 #define NM_PPTP_KEY_REFUSE_CHAP "refuse-chap"
0030 #define NM_PPTP_KEY_REFUSE_MSCHAP "refuse-mschap"
0031 #define NM_PPTP_KEY_REFUSE_MSCHAPV2 "refuse-mschapv2"
0032 #define NM_PPTP_KEY_REQUIRE_MPPE "require-mppe"
0033 #define NM_PPTP_KEY_REQUIRE_MPPE_40 "require-mppe-40"
0034 #define NM_PPTP_KEY_REQUIRE_MPPE_128 "require-mppe-128"
0035 #define NM_PPTP_KEY_MPPE_STATEFUL "mppe-stateful"
0036 #define NM_PPTP_KEY_NOBSDCOMP "nobsdcomp"
0037 #define NM_PPTP_KEY_NODEFLATE "nodeflate"
0038 #define NM_PPTP_KEY_NO_VJ_COMP "no-vj-comp"
0039 #define NM_PPTP_KEY_LCP_ECHO_FAILURE "lcp-echo-failure"
0040 #define NM_PPTP_KEY_LCP_ECHO_INTERVAL "lcp-echo-interval"
0041 
0042 #endif /* NM_PPTP_PLUGIN_H */