fixed symbols; fullfilled gitignore to stop annoying me;

v0.5.xx
Alexander Vdolainen 9 years ago
parent de7ae79973
commit e38ea0727b

5
.gitignore vendored

@ -59,3 +59,8 @@ tests/lv2ftpc
tests/*.cfg tests/*.cfg
debian/libsntl.substvars debian/libsntl.substvars
lib/libsxmp.pc lib/libsxmp.pc
compile
test-driver
*.pem
debian/libsxmp-dev/
debian/libsxmp/

@ -207,7 +207,7 @@ static long __cmp_cstr(const void *a, const void *b)
return (long)strcmp((const char *)a, (const char *)b); return (long)strcmp((const char *)a, (const char *)b);
} }
int links_init(sxhub_t *ssys) int sxhub_init(sxhub_t *ssys)
{ {
int r = 0; int r = 0;
@ -250,7 +250,7 @@ int links_init(sxhub_t *ssys)
return r; return r;
} }
int links_free(sxhub_t *ssys) int sxhub_free(sxhub_t *ssys)
{ {
__destroy_rpc_list_tree(ssys->system_rpc->rpc_tree); __destroy_rpc_list_tree(ssys->system_rpc->rpc_tree);
free(ssys->system_rpc->rpc_tree); free(ssys->system_rpc->rpc_tree);
@ -262,15 +262,15 @@ int links_free(sxhub_t *ssys)
return 0; return 0;
} }
int links_destroy(sxhub_t *ssys) int sxhub_destroy(sxhub_t *ssys)
{ {
int r = links_free(ssys); int r = sxhub_free(ssys);
free(ssys); free(ssys);
return r; return r;
} }
sxhub_t *links_create(void) sxhub_t *sxhub_create(void)
{ {
int r = 0; int r = 0;
sxhub_t *nsys = malloc(sizeof(sxhub_t)); sxhub_t *nsys = malloc(sizeof(sxhub_t));
@ -280,7 +280,7 @@ sxhub_t *links_create(void)
return NULL; return NULL;
} }
r = links_init(nsys); r = sxhub_init(nsys);
if(r) { if(r) {
errno = r; errno = r;
free(nsys); free(nsys);
@ -290,7 +290,7 @@ sxhub_t *links_create(void)
return nsys; return nsys;
} }
int links_setsslserts(sxhub_t *ssys, const char *rootca, int sxhub_setsslserts(sxhub_t *ssys, const char *rootca,
const char *certpem, const char *certkey) const char *certpem, const char *certkey)
{ {
int r = ENOMEM; int r = ENOMEM;

@ -29,13 +29,13 @@ static long __cmp_cstr(const void *a, const void *b)
return strcmp((char *)a, (char *)b); return strcmp((char *)a, (char *)b);
} }
int sntl_rpclist_init(usrtc_t *tree) int sxmp_rpclist_init(usrtc_t *tree)
{ {
usrtc_init(tree, USRTC_REDBLACK, MAX_RPC_LIST, __cmp_int); usrtc_init(tree, USRTC_REDBLACK, MAX_RPC_LIST, __cmp_int);
return 0; return 0;
} }
int sntl_rpclist_add(usrtc_t *tree, int type, const char *description, int sxmp_rpclist_add(usrtc_t *tree, int type, const char *description,
const char *version) const char *version)
{ {
rpc_typed_list_t *nlist = NULL; rpc_typed_list_t *nlist = NULL;
@ -81,7 +81,7 @@ int sntl_rpclist_add(usrtc_t *tree, int type, const char *description,
return r; return r;
} }
int sntl_rpclist_add_function(usrtc_t *tree, int type, const char *fu_name, int sxmp_rpclist_add_function(usrtc_t *tree, int type, const char *fu_name,
int (*rpcf)(void *, sexp_t *)) int (*rpcf)(void *, sexp_t *))
{ {
usrtc_node_t *node; usrtc_node_t *node;
@ -112,7 +112,7 @@ int sntl_rpclist_add_function(usrtc_t *tree, int type, const char *fu_name,
return 0; return 0;
} }
int sntl_rpclist_filter(usrtc_t *source, usrtc_t **dest, int flag, int *filter) int sxmp_rpclist_filter(usrtc_t *source, usrtc_t **dest, int flag, int *filter)
{ {
int r = 0, *f = filter, i; int r = 0, *f = filter, i;
usrtc_t *destination = NULL; usrtc_t *destination = NULL;

Loading…
Cancel
Save