Skip to content

Commit 380ab35

Browse files
committed
param[in]/[out]
1 parent f551253 commit 380ab35

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

include/config/ssl_multicert.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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);

src/traffic_ctl/ConvertConfigCommand.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class ConvertConfigCommand : public CtrlCommand
3737
/**
3838
* Construct the command from parsed arguments.
3939
*
40-
* @param args Parsed command line arguments.
40+
* @param[in] args Parsed command line arguments.
4141
*/
4242
ConvertConfigCommand(ts::Arguments *args);
4343

src/traffic_ctl/SSLMultiCertCommand.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class SSLMultiCertCommand : public CtrlCommand
3636
/**
3737
* Construct the command from parsed arguments.
3838
*
39-
* @param args Parsed command line arguments.
39+
* @param[in] args Parsed command line arguments.
4040
*/
4141
SSLMultiCertCommand(ts::Arguments *args);
4242

0 commit comments

Comments
 (0)