network: Move non-shared code into the one module that uses it
This commit is contained in:
parent
8a3da8b36d
commit
4b9d8ac058
4 changed files with 21 additions and 92 deletions
|
@ -36,7 +36,7 @@ nm_applet_sources = [
|
|||
'ws-wpa-psk.c'
|
||||
]
|
||||
|
||||
sources = files(nm_applet_sources) + files('utils.c')
|
||||
sources = files(nm_applet_sources)
|
||||
|
||||
nm_resource_data = [
|
||||
'eap-method-fast.ui',
|
||||
|
|
|
@ -1,75 +0,0 @@
|
|||
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
||||
/* NetworkManager Applet -- allow user control over networking
|
||||
*
|
||||
* Dan Williams <dcbw@redhat.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Copyright 2007 - 2015 Red Hat, Inc.
|
||||
*/
|
||||
|
||||
#include "nm-default.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <netinet/ether.h>
|
||||
|
||||
#include "utils.h"
|
||||
|
||||
/**
|
||||
* Filters the characters from a text that was just input into GtkEditable.
|
||||
* Returns FALSE, if after filtering no characters were left. TRUE means,
|
||||
* that valid characters were added and the content of the GtkEditable changed.
|
||||
**/
|
||||
gboolean
|
||||
utils_filter_editable_on_insert_text (GtkEditable *editable,
|
||||
const gchar *text,
|
||||
gint length,
|
||||
gint *position,
|
||||
void *user_data,
|
||||
UtilsFilterGtkEditableFunc validate_character,
|
||||
gpointer block_func)
|
||||
{
|
||||
int i, count = 0;
|
||||
g_autofree gchar *result = g_new (gchar, length+1);
|
||||
|
||||
for (i = 0; i < length; i++) {
|
||||
if (validate_character (text[i]))
|
||||
result[count++] = text[i];
|
||||
}
|
||||
result[count] = 0;
|
||||
|
||||
if (count > 0) {
|
||||
if (block_func) {
|
||||
g_signal_handlers_block_by_func (G_OBJECT (editable),
|
||||
G_CALLBACK (block_func),
|
||||
user_data);
|
||||
}
|
||||
gtk_editable_insert_text (editable, result, count, position);
|
||||
if (block_func) {
|
||||
g_signal_handlers_unblock_by_func (G_OBJECT (editable),
|
||||
G_CALLBACK (block_func),
|
||||
user_data);
|
||||
}
|
||||
}
|
||||
g_signal_stop_emission_by_name (G_OBJECT (editable), "insert-text");
|
||||
|
||||
return count > 0;
|
||||
}
|
||||
|
||||
gboolean
|
||||
utils_char_is_ascii_print (char character)
|
||||
{
|
||||
return g_ascii_isprint (character);
|
||||
}
|
|
@ -23,22 +23,11 @@
|
|||
#include <nm-setting-wired.h>
|
||||
#include <nm-setting-connection.h>
|
||||
|
||||
gboolean utils_char_is_ascii_print (char character);
|
||||
|
||||
#define NMA_ERROR (g_quark_from_static_string ("nma-error-quark"))
|
||||
|
||||
typedef enum {
|
||||
NMA_ERROR_GENERIC
|
||||
} NMAError;
|
||||
|
||||
typedef gboolean (*UtilsFilterGtkEditableFunc) (char character);
|
||||
gboolean utils_filter_editable_on_insert_text (GtkEditable *editable,
|
||||
const gchar *text,
|
||||
gint length,
|
||||
gint *position,
|
||||
void *user_data,
|
||||
UtilsFilterGtkEditableFunc validate_character,
|
||||
gpointer block_func);
|
||||
|
||||
extern void widget_set_error (GtkWidget *widget);
|
||||
extern void widget_unset_error (GtkWidget *widget);
|
||||
|
|
|
@ -126,7 +126,7 @@ validate (WirelessSecurity *parent, GError **error)
|
|||
}
|
||||
} else if ((strlen (key) == 5) || (strlen (key) == 13)) {
|
||||
for (i = 0; i < strlen (key); i++) {
|
||||
if (!utils_char_is_ascii_print (key[i])) {
|
||||
if (!g_ascii_isprint (key[i])) {
|
||||
widget_set_error (entry);
|
||||
g_set_error (error, NMA_ERROR, NMA_ERROR_GENERIC, _("invalid wep-key: key with a length of %zu must contain only ascii characters"), strlen (key));
|
||||
return FALSE;
|
||||
|
@ -222,10 +222,25 @@ wep_entry_filter_cb (GtkEditable *editable,
|
|||
WirelessSecurityWEPKey *sec = (WirelessSecurityWEPKey *) data;
|
||||
|
||||
if (sec->type == NM_WEP_KEY_TYPE_KEY) {
|
||||
utils_filter_editable_on_insert_text (editable,
|
||||
text, length, position, data,
|
||||
utils_char_is_ascii_print,
|
||||
wep_entry_filter_cb);
|
||||
int i, count = 0;
|
||||
g_autofree gchar *result = g_new (gchar, length+1);
|
||||
|
||||
for (i = 0; i < length; i++) {
|
||||
if (g_ascii_isprint (text[i]))
|
||||
result[count++] = text[i];
|
||||
}
|
||||
result[count] = 0;
|
||||
|
||||
if (count > 0) {
|
||||
g_signal_handlers_block_by_func (G_OBJECT (editable),
|
||||
G_CALLBACK (wep_entry_filter_cb),
|
||||
data);
|
||||
gtk_editable_insert_text (editable, result, count, position);
|
||||
g_signal_handlers_unblock_by_func (G_OBJECT (editable),
|
||||
G_CALLBACK (wep_entry_filter_cb),
|
||||
data);
|
||||
}
|
||||
g_signal_stop_emission_by_name (G_OBJECT (editable), "insert-text");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue