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, GH #580
  also whitespace cleanup
  • Loading branch information
TheGrandWazoo committed Aug 29, 2016
1 parent 1e1c1ed commit 421ec8f
Show file tree
Hide file tree
Showing 26 changed files with 6,222 additions and 6,636 deletions.
554 changes: 268 additions & 286 deletions modules/sca/sca.c

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions modules/sca/sca.h
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 */

0 comments on commit 421ec8f

Please sign in to comment.