pali
                                            pali
                                        
                                    It is a good idea to have just one consistent coding style in whole project, but I dislike your proposed code style where are too many spaces around parenthesis. E.g....
Try something like this? ``` BasedOnStyle: LLVM Language: Cpp IndentWidth: 4 ColumnLimit: 120 AllowShortFunctionsOnASingleLine: Empty AlwaysBreakBeforeMultilineStrings: true ```
> AFAIK `AllowShortFunctionsOnASingleLine` should be either `true` or `false` According to http://releases.llvm.org/3.9.0/tools/clang/docs/ClangFormatStyleOptions.html possible values are: `None`, `Empty`, `Inline`, `All` > I would suggest having `UseTab: Never` Already part of `BasedOnStyle:...
@ViToni seems that auto-reformat by robot/machine for everything does not work as expected. After automatic reformat it needs some manual work to fix some parts. So I do not think...
Hello! You first need to create your own fork of this repository, then push changes inyo your own fork and later create a pull request for including changes of your...
Can you please post gdb backtrace (or corefile) of the crash?
This pull request seems to be superseded by https://github.com/pali/igmpproxy/pull/72
Ok, thank you! Now it is more readable. But I'm thinking about this logic and now I'm not sure if this change is really correct. igmp query and report packets...
> 1. Forward membershi query to down stream. When VLC report membership, igmpproxy will forward to upstream. igmpproxy does *not* send IGMP MembershipReport packets to Media Server. You can verify...
I know about this issue, but your patch does not fix it. It just increase max limit to some random number. Real fix for this problem is to remove upper...