Compare commits

...

2 Commits

26 changed files with 268 additions and 267 deletions

View File

@ -53,7 +53,7 @@ ConstructorInitializerAllOnOneLineOrOnePerLine: true
ConstructorInitializerIndentWidth: 4 ConstructorInitializerIndentWidth: 4
ContinuationIndentWidth: 4 ContinuationIndentWidth: 4
Cpp11BracedListStyle: true Cpp11BracedListStyle: true
DerivePointerAlignment: true DerivePointerAlignment: false
DisableFormat: false DisableFormat: false
FixNamespaceComments: true FixNamespaceComments: true
ForEachMacros: ForEachMacros:
@ -94,7 +94,8 @@ PenaltyBreakString: 1000
PenaltyBreakTemplateDeclaration: 10 PenaltyBreakTemplateDeclaration: 10
PenaltyExcessCharacter: 1000000 PenaltyExcessCharacter: 1000000
PenaltyReturnTypeOnItsOwnLine: 2000 PenaltyReturnTypeOnItsOwnLine: 2000
PointerAlignment: Left PointerAlignment: Right
ReferenceAlignment: Right
RawStringFormats: RawStringFormats:
- Language: Cpp - Language: Cpp
Delimiters: Delimiters:
@ -125,7 +126,7 @@ RawStringFormats:
BasedOnStyle: google BasedOnStyle: google
ReflowComments: true ReflowComments: true
SeparateDefinitionBlocks: Always SeparateDefinitionBlocks: Always
SortIncludes: false SortIncludes: Never
SortUsingDeclarations: true SortUsingDeclarations: true
SpaceAfterCStyleCast: false SpaceAfterCStyleCast: false
SpaceAfterTemplateKeyword: true SpaceAfterTemplateKeyword: true

View File

@ -14,7 +14,7 @@ int main(int argc, char *argv[])
// Connect to a public echo server // Connect to a public echo server
if (argc > 1 && std::string(argv[1]) == "-p") if (argc > 1 && std::string(argv[1]) == "-p")
{ {
server = "wss://echo.websocket.org"; server = "wss://echo.websocket.events/.ws";
path = "/"; path = "/";
} }
else else