Open erlingrj opened 3 weeks ago
I think we want to consistently use CamelCase or snake_case. snake_case is more common with C code.
Thanks for suggestion. I guess then either:
LfDelayedConnection
UcDelayedConnection
Would be right. The naming convention I went for was to Use CamelCase for structs/classes and snake_case for function names and variable names.
yes CamelCase for struct/classes
I prefer the 2.) UcDelayedConnection
There is a problem that the name of types and structs defined in 'reactor-uc` might collide with user names. I think the only solution to this is to prepend something to our reactor-uc types and basically rename everything...
lf_DelayedConnection
lfDelayedConnection
uc_DelayedConection
ucDelayedConnection
_DelayedConnection
What do you think?