mirror of
https://github.com/drogonframework/drogon.git
synced 2025-07-20 00:00:28 -04:00
Compare commits
2 Commits
d9afdf279a
...
645c2d8aaf
Author | SHA1 | Date | |
---|---|---|---|
|
645c2d8aaf | ||
|
ab76e80089 |
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user