@@ -98,24 +98,24 @@ class SSLMultiCertParser
9898 /* *
9999 * Detect the configuration format from content and filename.
100100 *
101- * @param content The configuration content.
102- * @param filename The filename (used for extension-based detection).
101+ * @param[in] content The configuration content.
102+ * @param[in] filename The filename (used for extension-based detection).
103103 * @return The detected format.
104104 */
105105 Format detect_format (std::string_view content, std::string const &filename);
106106
107107 /* *
108108 * Parse YAML-formatted configuration content.
109109 *
110- * @param content The YAML content.
110+ * @param[in] content The YAML content.
111111 * @return ConfigResult containing the parsed entries or errors.
112112 */
113113 ConfigResult<SSLMultiCertConfig> parse_yaml (std::string_view content);
114114
115115 /* *
116116 * Parse legacy (.config) formatted configuration content.
117117 *
118- * @param content The legacy config content.
118+ * @param[in] content The legacy config content.
119119 * @return ConfigResult containing the parsed entries or errors.
120120 */
121121 ConfigResult<SSLMultiCertConfig> parse_legacy (std::string_view content);
@@ -132,15 +132,15 @@ class SSLMultiCertMarshaller
132132 /* *
133133 * Serialize configuration to YAML format.
134134 *
135- * @param config The configuration to serialize.
135+ * @param[in] config The configuration to serialize.
136136 * @return YAML string representation.
137137 */
138138 std::string to_yaml (SSLMultiCertConfig const &config);
139139
140140 /* *
141141 * Serialize configuration to JSON format.
142142 *
143- * @param config The configuration to serialize.
143+ * @param[in] config The configuration to serialize.
144144 * @return JSON string representation.
145145 */
146146 std::string to_json (SSLMultiCertConfig const &config);
0 commit comments