Skip to content

Repo For SONiC Buildimage Supporting Dual-ToRs

License

Notifications You must be signed in to change notification settings

ridahanif96/sonic-linkmgrd-22

 
 

Repository files navigation

Total alerts

Project

This repo tracks the source code of linkmgrd for dual-ToR topology.

Coding style guide

Please follow the simple rules laid out below (will update as needed):

Spacing

  • Please configure your editor to enable expand white spaces. Do not use tab for spacing in source code.

  • Please configure your editor to set tab stop at 4 spaces. And use 4 white spaces for each indentation level.

  • Please leave one white space after following keywords:

    if (...)

    while (...)

    for (...)

Curly braces

  • Function definition: start a new line
void function(...)
{
    // code block
}
  • if/for/while condition when condition is one liner: same line
if (...) {
    // code block
}
  • if/for/while condition expands multiple lines: start a new line with ending ')' and '{'
if (...
    ...
) {
    // code block
}

Indentations

  • Please use 4 white spaces for each indentation level.

  • Multiple line condition indentation for (if/while/for) and/or function calls: indent one level and the ')' indent at the same level of the keyword or function name

if (condition line 1 ..
    condition line 2 (indent to '(' above)
    condition line 3
) {
    // code block
}

foo(
    parameter1,
    parameter2,
    parameter3
);

About

Repo For SONiC Buildimage Supporting Dual-ToRs

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 98.3%
  • Makefile 1.7%