| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
This avoids the unportable five pointer hack.
|
|
|
|
| |
This avoids the unportable five pointer hack.
|
| |
|
|
|
|
|
|
|
| |
The secret storage flag wasn't being saved when using smartcard
authentication, resulting in the PIN being stored.
Fixes #2166.
|
|
|
|
| |
Closes strongswan/strongswan#70.
|
| |
|
|
|
|
|
|
|
|
|
| |
Doing this from the main UI thread (which delivers the broadcast) might
cause an ANR if there is a delay (e.g. while acquiring a mutex in the
native parts). There might also have been a race condition during
termination previously because Unregister() was not synchronized so there
might have been dangling events that got delivered while or after the mutex
in the native parts was destroyed.
|
| |
|
|
|
|
| |
Courtesy of Yick Xie.
|
|
|
|
|
| |
This way it is not necessary to pass the same values to reload the
loggers.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The file format is documented on the wiki.
URLs to .sswan files may be intercepted and downloaded files with a media
type of application/vnd.strongswan.profile may also be opened (the file
extension doesn't matter in that case). Whether downloaded files for which
the media type is not correct but the extension is .sswan can be opened
depends on the app that issues the Intent. For instance, from the default
Downloads app it won't work due to the content:// URLs that do not contain
the file name but when opening the downloaded file from within Chrome's
Downloads view it works as these Intents use file:// URLs, which contain
the complete file name (the latter requires a new permission).
|
|
|
|
|
| |
This allows other components to modify the profiles and notify about
changes.
|
|
|
|
|
|
| |
All new or edited profiles get a random UUID. We currently don't
enforce one, though. Later we might change that and use the UUID as
primary key.
|
| |
|
| |
|
|
|
|
|
| |
On newer Android systems this seems to happen automatically (or does at
least not cause crashes if the library is not loaded).
|
| |
|
| |
|
| |
|
|
|
|
|
| |
This forces the service to run in the foreground, meaning the system
won't kill it when low on memory.
|
| |
|
|
|
|
|
|
|
|
| |
This avoids triggering additional errors via e.g. ike_updown() that
might cause the error message displayed in the GUI to change if the
status fragment is recreated.
References #2134.
|
|
|
|
|
| |
Previously we'd just ignore the invalid values without notifying the
user.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Fixes: 40f2589abfc8 ("gmp: Support of SHA-3 RSA signatures")
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
This updates the auth dialog so that passwords are properly retrieved
(e.g. for the nm-applet). It also adds support for external UI mode and
properly handles secret flags.
|
|
|
|
| |
We already have this restriction in the auth-dialog.
|
|
|
|
|
|
| |
This is probably a good idea to do to signal there's significant changes in
dependencies to the distro package maintainers with libnm port and associated
changes.
|
|
|
|
| |
It's been released years ago; we depend on newer stuff than that now.
|
|
|
|
|
|
|
|
| |
libgnomeui is long deprecated.
There's one functional difference: the choice to save the passwords is gone.
The password flags and saved password should be set in the preferences dialog,
but this commit does not fix that.
|
|
|
|
|
| |
Hiding and showing the items is not ideal, since it leaves the spacing
in place and the layout gets really messy.
|
|
|
|
|
|
|
|
|
| |
It was only possible to set the password from the authentication dialog,
which is not ideal; as it requires a connection attempt.
This adds an input entry along with a primary icon from libnma/libnm-gtk
which allows selecting the backend and flags for the password (system, session
agent, always ask or empty).
|
| |
|
|
|
|
|
| |
libnm replaces libnm-glib. This will make sense with port to libnm and is done
to reduce line noise in that commit.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
They're both the same now. We'll port the new one to libnm in follow-up commits.
NetworkManager 1.2 (which is currently versioned as 1.1.0) is going to bring
some new ABI while still supporting the old one. There's new VPN service and
UI plugin APIs in libnm.
There's one difficulty though -- the connection editor 1.2 will be linked
against libnm and a new libnma library it will provide (as opposed to
libnm-glib and libnm-gtk), thus will be incapable of loading of property
plugins that are linked with the old libraries (due to glib type system
limitations).
However, we must not break support for other connection editors (GNOME control
center, older versions of nm-connection-editor, etc.) therefore we need
to build two versions of the property plugin. NetworkManager 1.2's libnm will
provide a shim that makes it easy.
|
| |
|