mirror of
https://github.com/drogonframework/drogon.git
synced 2025-07-21 00:00:35 -04:00
Compare commits
No commits in common. "645c2d8aaf80d3502bf2598c4caeffe91e1f19a9" and "d9afdf279a35e744bdd733c3add43eac605f2569" have entirely different histories.
645c2d8aaf
...
d9afdf279a
@ -53,7 +53,7 @@ ConstructorInitializerAllOnOneLineOrOnePerLine: true
|
|||||||
ConstructorInitializerIndentWidth: 4
|
ConstructorInitializerIndentWidth: 4
|
||||||
ContinuationIndentWidth: 4
|
ContinuationIndentWidth: 4
|
||||||
Cpp11BracedListStyle: true
|
Cpp11BracedListStyle: true
|
||||||
DerivePointerAlignment: false
|
DerivePointerAlignment: true
|
||||||
DisableFormat: false
|
DisableFormat: false
|
||||||
FixNamespaceComments: true
|
FixNamespaceComments: true
|
||||||
ForEachMacros:
|
ForEachMacros:
|
||||||
@ -94,8 +94,7 @@ PenaltyBreakString: 1000
|
|||||||
PenaltyBreakTemplateDeclaration: 10
|
PenaltyBreakTemplateDeclaration: 10
|
||||||
PenaltyExcessCharacter: 1000000
|
PenaltyExcessCharacter: 1000000
|
||||||
PenaltyReturnTypeOnItsOwnLine: 2000
|
PenaltyReturnTypeOnItsOwnLine: 2000
|
||||||
PointerAlignment: Right
|
PointerAlignment: Left
|
||||||
ReferenceAlignment: Right
|
|
||||||
RawStringFormats:
|
RawStringFormats:
|
||||||
- Language: Cpp
|
- Language: Cpp
|
||||||
Delimiters:
|
Delimiters:
|
||||||
@ -126,7 +125,7 @@ RawStringFormats:
|
|||||||
BasedOnStyle: google
|
BasedOnStyle: google
|
||||||
ReflowComments: true
|
ReflowComments: true
|
||||||
SeparateDefinitionBlocks: Always
|
SeparateDefinitionBlocks: Always
|
||||||
SortIncludes: Never
|
SortIncludes: false
|
||||||
SortUsingDeclarations: true
|
SortUsingDeclarations: true
|
||||||
SpaceAfterCStyleCast: false
|
SpaceAfterCStyleCast: false
|
||||||
SpaceAfterTemplateKeyword: true
|
SpaceAfterTemplateKeyword: true
|
||||||
|
@ -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.events/.ws";
|
server = "wss://echo.websocket.org";
|
||||||
path = "/";
|
path = "/";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user