chiark / gitweb /
allow to disable the replacement of unusual characters
[elogind.git] / udev_rules.h
index 56153519d4eaaa3f3d8b5dbfee5912cfb45bea21..682bedac01fbfb3e42c0271d6c395693a5303f2c 100644 (file)
@@ -57,6 +57,12 @@ enum import_type {
        IMPORT_PARENT,
 };
 
+enum escape_type {
+       ESCAPE_UNSET,
+       ESCAPE_NONE,
+       ESCAPE_REPLACE,
+};
+
 struct udev_rule {
        struct key action;
        struct key devpath;
@@ -75,6 +81,8 @@ struct udev_rule {
        struct key result;
        struct key import;
        enum import_type import_type;
+       struct key test;
+       mode_t test_mode_mask;
        struct key run;
        struct key wait_for_sysfs;
        struct key label;
@@ -86,7 +94,9 @@ struct udev_rule {
        struct key group;
        mode_t mode;
        enum key_operation mode_operation;
+       enum escape_type string_escape;
 
+       unsigned int link_priority;
        unsigned int partitions;
        unsigned int last_rule:1,
                     ignore_device:1,