| 1058 | -------------------------------------------------------------------------*/ |
| 1059 | |
| 1060 | inline bool |
| 1061 | MIMEField::value_is_valid(uint32_t invalid_char_bits) const |
| 1062 | { |
| 1063 | auto value{value_get()}; |
| 1064 | for (auto c : value) { |
| 1065 | if (ParseRules::is_type(c, invalid_char_bits)) { |
| 1066 | return false; |
| 1067 | } |
| 1068 | } |
| 1069 | return true; |
| 1070 | } |
| 1071 | |
| 1072 | inline int |
| 1073 | MIMEField::has_dups() const |
no outgoing calls
no test coverage detected