aboutsummaryrefslogtreecommitdiffstats
path: root/extcap_parser.h
diff options
context:
space:
mode:
authorRoland Knall <roland.knall@br-automation.com>2015-12-29 15:35:43 +0100
committerStig Bjørlykke <stig@bjorlykke.org>2016-01-05 14:41:12 +0000
commitcfd5457ec0575be3b1b8726daf95fdc4da0e50fb (patch)
treefe3ff5d04d5f0c8d077831b3fb9135ae9520960e /extcap_parser.h
parenta7e3ba03ce6eaeebc762322cb1691adeeda46ff8 (diff)
extcap: Add regular expression validation support
Regular expressions follow the Qt Regex syntax, which is formulated after the Perl Regex syntax. A more detailed overview of the possible rules can be found at: http://doc.qt.io/qt-4.8/qregexp.html If a required option is present, even the double-click on the interface will first start the options dialog (Qt only) Required fields are marked bold and put first in the dialog. Additionally if validation failes (which it will if a required field is kept empty, but also if a non-required textfield is violating the defined regex), the label of the field is marked with red. Change-Id: If04a1146d0dfa778332ab2a39122c7a6ee1e93d2 Reviewed-on: https://code.wireshark.org/review/12914 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
Diffstat (limited to 'extcap_parser.h')
-rw-r--r--extcap_parser.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/extcap_parser.h b/extcap_parser.h
index a730d200bc..158838c16f 100644
--- a/extcap_parser.h
+++ b/extcap_parser.h
@@ -69,7 +69,8 @@ typedef enum {
EXTCAP_PARAM_FILE_MUSTEXIST,
EXTCAP_PARAM_FILE_EXTENSION,
EXTCAP_PARAM_PARENT,
- EXTCAP_PARAM_REQUIRED
+ EXTCAP_PARAM_REQUIRED,
+ EXTCAP_PARAM_VALIDATION
} extcap_param_type;
/* Values for a given sentence; values are all stored as a call
@@ -112,6 +113,8 @@ typedef struct _extcap_arg {
gboolean is_required;
+ gchar * regexp;
+
extcap_arg_type arg_type;
extcap_complex *range_start;