splone / splonebox-core

splonebox - open source network assessment tool with focus on modularity
http://splonebox.io
GNU Affero General Public License v3.0
24 stars 7 forks source link

loop.c does not fulfill naming conventions #19

Closed stze closed 8 years ago

stze commented 8 years ago

All declared functions in loop.c do not fulfill the naming convention requirements. E.g. the function:

static inline void connection_loop_poll_events_until(struct connection *con,
    bool *condition);

should be named:

static inline void loop_poll_events_until(struct connection *con,
    bool *condition);