diff options
Diffstat (limited to 'src/libmime/scan_result.h')
-rw-r--r-- | src/libmime/scan_result.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/libmime/scan_result.h b/src/libmime/scan_result.h index da3fb1608..46c2de8fa 100644 --- a/src/libmime/scan_result.h +++ b/src/libmime/scan_result.h @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Vsevolod Stakhov + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /** * @file scan_result.h * Scan result holder @@ -43,7 +59,7 @@ struct rspamd_symbol_result { gssize opts_len; /**< total size of all options (negative if truncated option is added) */ guint nshots; int flags; - struct rspamd_symbol_result *next; + struct rspamd_symbol_result *next; /**< for shadow results */ }; |