Skip to content

Commit

Permalink
sca: terminate all error and debug messages with a new line
Browse files Browse the repository at this point in the history
- issue reported by oej, FH #580
  Commmit also includes whitespace cleanup..
  • Loading branch information
TheGrandWazoo committed Aug 31, 2016
1 parent 672ea9b commit a8fae37
Show file tree
Hide file tree
Showing 25 changed files with 6,333 additions and 6,636 deletions.
592 changes: 300 additions & 292 deletions modules/sca/sca.c

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions modules/sca/sca.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,29 +28,29 @@
#define SCA_H

struct _sca_config {
str *outbound_proxy;
str *db_url;
str *subs_table;
str *state_table;
int db_update_interval;
int hash_table_size;
int call_info_max_expires;
int line_seize_max_expires;
int purge_expired_interval;
str *outbound_proxy;
str *db_url;
str *subs_table;
str *state_table;
int db_update_interval;
int hash_table_size;
int call_info_max_expires;
int line_seize_max_expires;
int purge_expired_interval;
};
typedef struct _sca_config sca_config;
typedef struct _sca_config sca_config;

struct _sca_mod {
sca_config *cfg;
sca_hash_table *subscriptions;
sca_hash_table *appearances;
sca_config *cfg;
sca_hash_table *subscriptions;
sca_hash_table *appearances;

db_func_t *db_api;
struct tm_binds *tm_api;
sl_api_t *sl_api;
db_func_t *db_api;
struct tm_binds *tm_api;
sl_api_t *sl_api;
};
typedef struct _sca_mod sca_mod;
typedef struct _sca_mod sca_mod;

extern sca_mod *sca;
extern sca_mod *sca;

#endif /* SCA_H */
#endif // SCA_H

0 comments on commit a8fae37

Please sign in to comment.