attempt 2, fix whitespace differences
This commit is contained in:
parent
e6f2ed341a
commit
975f555f22
@ -47,13 +47,13 @@ parsingContext& parsingContext::getDefaultContext()
|
|||||||
|
|
||||||
headerParseRecoveryMethod::headerLineError parsingContext::getHeaderParseErrorRecoveryMethod() const
|
headerParseRecoveryMethod::headerLineError parsingContext::getHeaderParseErrorRecoveryMethod() const
|
||||||
{
|
{
|
||||||
return m_headerParseErrorRecovery;
|
return m_headerParseErrorRecovery;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void parsingContext::setHeaderParseErrorRecoveryMethod(headerParseRecoveryMethod::headerLineError recoveryMethod)
|
void parsingContext::setHeaderParseErrorRecoveryMethod(headerParseRecoveryMethod::headerLineError recoveryMethod)
|
||||||
{
|
{
|
||||||
m_headerParseErrorRecovery = recoveryMethod;
|
m_headrParseErrorRecovery = recoveryMethod;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -31,15 +31,15 @@
|
|||||||
namespace vmime
|
namespace vmime
|
||||||
{
|
{
|
||||||
|
|
||||||
/** Provides runtime configurable options to provide flexibility in header parsing
|
/** Provides runtime configurable options to provide flexibility in header parsing
|
||||||
*/
|
*/
|
||||||
struct headerParseRecoveryMethod {
|
struct headerParseRecoveryMethod {
|
||||||
enum headerLineError {
|
enum headerLineError {
|
||||||
SKIP_LINE = 0,
|
SKIP_LINE = 0,
|
||||||
/* APPEND_TO_PREVIOUS_LINE = 1, */
|
/* APPEND_TO_PREVIOUS_LINE = 1, */
|
||||||
ASSUME_END_OF_HEADERS = 2
|
ASSUME_END_OF_HEADERS = 2
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
/** Holds configuration parameters used for parsing messages.
|
/** Holds configuration parameters used for parsing messages.
|
||||||
*/
|
*/
|
||||||
@ -57,22 +57,22 @@ public:
|
|||||||
*/
|
*/
|
||||||
static parsingContext& getDefaultContext();
|
static parsingContext& getDefaultContext();
|
||||||
|
|
||||||
/** Sets the recovery method when parsing a header encounters an error such as a failed fold or missing new line.
|
/** Sets the recovery method when parsing a header encounters an error such as a failed fold or missing new line.
|
||||||
*
|
*
|
||||||
* @param recoveryMethod is one of vmime::headerParseRecoveryMethod. Defaults to vmime::headerParseRecoveryMethod::SKIP_LINE.
|
* @param recoveryMethod is one of vmime::headerParseRecoveryMethod. Defaults to vmime::headerParseRecoveryMethod::SKIP_LINE.
|
||||||
*/
|
*/
|
||||||
void setHeaderParseErrorRecoveryMethod(headerParseRecoveryMethod::headerLineError recoveryMethod);
|
void setHeaderParseErrorRecoveryMethod(headerParseRecoveryMethod::headerLineError recoveryMethod);
|
||||||
|
|
||||||
/** Return the recovery method when parsing a header encounters an error.
|
/** Return the recovery method when parsing a header encounters an error.
|
||||||
*
|
*
|
||||||
* @return is an enum from vmime::headerParseRecoveryMethod
|
* @return is an enum from vmime::headerParseRecoveryMethod
|
||||||
*/
|
*/
|
||||||
headerParseRecoveryMethod::headerLineError getHeaderParseErrorRecoveryMethod() const;
|
headerParseRecoveryMethod::headerLineError getHeaderParseErrorRecoveryMethod() const;
|
||||||
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
headerParseRecoveryMethod::headerLineError m_headerParseErrorRecovery;
|
headerParseRecoveryMethod::headerLineError m_headerParseErrorRecovery;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user