X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2Fio%2Frecord.h;h=6c2df6590683d8f480fb286c95a715de90a63251;hb=HEAD;hp=48dd8afee59fe37e8551f527c16172ef2722c8b8;hpb=e0713d1539887566e0ea7d85942c305ec727c9dd;p=cassiopeia.git diff --git a/src/io/record.h b/src/io/record.h index 48dd8af..6c2df65 100644 --- a/src/io/record.h +++ b/src/io/record.h @@ -19,6 +19,7 @@ public: SET_PROFILE = 0x11, SET_WISH_FROM = 0x12, SET_WISH_TO = 0x13, + SET_OCSP_TARGET_CA = 0x14, ADD_SAN = 0x18, ADD_AVA = 0x19, ADD_PROOF_LINE = 0x40, @@ -54,7 +55,7 @@ public: template static void append( std::string& str, T val ) { - str.append( ( char* ) &val, sizeof( T ) ); + str.append( ( char * ) &val, sizeof( T ) ); } template @@ -90,7 +91,7 @@ public: void unpackFromString( const std::string& str ) { if( str.size() != RECORD_HEADER_SIZE ) { - throw std::runtime_error("Invalid string length"); + throw std::runtime_error( "Invalid string length" ); } auto it = str.cbegin(); @@ -108,6 +109,6 @@ public: }; std::string parseCommand( RecordHeader& head, const std::string& input ); -std::string parseCommandChunked( RecordHeader& head, std::shared_ptr conn); +std::string parseCommandChunked( RecordHeader& head, std::shared_ptr conn ); void sendCommand( RecordHeader& head, const std::string& data, std::shared_ptr bio );