Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
NetworkManager-l2tp
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
CeRiAl
NetworkManager-l2tp
Commits
769022f2
Commit
769022f2
authored
Feb 07, 2012
by
Сергей Прохоров
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Plugin works with NetworkManager 0.8.0 on Ubuntu 10.04
parent
f8d8c85a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
Makefile.am
properties/Makefile.am
+1
-1
nm-l2tp-service.c
src/nm-l2tp-service.c
+6
-6
No files found.
properties/Makefile.am
View file @
769022f2
...
...
@@ -32,7 +32,7 @@ libnm_l2tp_properties_la_LIBADD = \
$(GTK_LIBS)
\
$(GCONF_LIBS)
\
$(LIBGNOMEUI_LIBS)
\
$(top_builddir)
/common-gnome/libnm-
pp
tp-common-gnome.la
\
$(top_builddir)
/common-gnome/libnm-
l2
tp-common-gnome.la
\
$(NM_LIBS)
libnm_l2tp_properties_la_LDFLAGS
=
\
...
...
src/nm-l2tp-service.c
View file @
769022f2
...
...
@@ -114,9 +114,9 @@ static gboolean impl_l2tp_service_set_ip4_config (NML2tpPppService *self,
#define NM_L2TP_PPP_SERVICE_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), NM_TYPE_L2TP_PPP_SERVICE, NML2tpPppServicePrivate))
typedef
struct
{
char
*
username
;
char
*
domain
;
char
*
password
;
char
username
[
100
]
;
char
domain
[
100
]
;
char
password
[
100
]
;
}
NML2tpPppServicePrivate
;
enum
{
...
...
@@ -752,7 +752,7 @@ pppd_timed_out (gpointer user_data)
{
NML2tpPlugin
*
plugin
=
NM_L2TP_PLUGIN
(
user_data
);
g_warning
(
_
(
"Looks like pppd didn't initialize our dbus module"
));
g_warning
(
_
(
"
pppd timeout.
Looks like pppd didn't initialize our dbus module"
));
nm_vpn_plugin_failure
(
NM_VPN_PLUGIN
(
plugin
),
NM_VPN_CONNECTION_STATE_REASON_SERVICE_START_TIMEOUT
);
return
FALSE
;
...
...
@@ -1582,7 +1582,7 @@ main (int argc, char *argv[])
g_option_context_add_main_entries
(
opt_ctx
,
options
,
NULL
);
g_option_context_set_summary
(
opt_ctx
,
_
(
"nm-
pp
tp-service provides L2TP VPN capability with optional IPSec support to NetworkManager."
));
_
(
"nm-
l2
tp-service provides L2TP VPN capability with optional IPSec support to NetworkManager."
));
g_option_context_parse
(
opt_ctx
,
&
argc
,
&
argv
,
NULL
);
g_option_context_free
(
opt_ctx
);
...
...
@@ -1591,7 +1591,7 @@ main (int argc, char *argv[])
debug
=
TRUE
;
if
(
debug
)
g_message
(
"nm-
pp
tp-service (version "
DIST_VERSION
") starting..."
);
g_message
(
"nm-
l2
tp-service (version "
DIST_VERSION
") starting..."
);
plugin
=
nm_l2tp_plugin_new
();
if
(
!
plugin
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment