- File base_stdout.cc
- using this handler is depricated, it will be removed from future versions of jabberd14
- Global jutil_error (xmlnode x, terror E)
- use jutil_error_xmpp instead!
- Global jutil_regkey (char *key, char *seed)
- This function is not really used anymore. jabberd14 does not check any keys anymore and only creates them in the jsm's mod_register.c for compatibility. This function is also used in mod_groups.c and the key is even checked there, but I do not know if mod_groups.c still works at all.
- Global pmalloc_x (pool p, int size, char c)
- jabberd does use pmalloco instead, this function will be removed
- Global str_b64decode (char *str)
- use base64_decode instead
- Global xmlnode_get_attrib (xmlnode owner, const char *name)
- This function is not aware of namespaces, use xmlnode_get_attrib_ns() instead
- Global xmlnode_get_name (xmlnode node)
- This function mimics the jabberd 1.4.x xmlnode_get_name() where the name including the prefix is returned. You probably do not want to use this in a namespace aware application. You might want to use xmlnode_get_localname(), and xmlnode_get_namespace() instead.
- Global xmlnode_get_tag (xmlnode parent, const char *name)
- This function is not aware of namespaces, use xmlnode_get_tags(), and xmlnode_get_list_item() instead
- Global xmlnode_get_tag_data (xmlnode parent, const char *name)
- This function is not aware of namespaces, use xmlnode_get_tags(), and xmlnode_get_list_item_data() instead
- Global xmlnode_hide_attrib (xmlnode parent, const char *name)
- This function is not aware of namespaces. Use xmlnode_hide_attrib_ns() instead.
- Global xmlnode_insert_tag (xmlnode parent, const char *name)
- This function is not aware of namespaces, use xmlnode_insert_tag_ns() instead
- Global xmlnode_new_tag (const char *name)
- This function is not aware of namespaces, use xmlnode_new_tag_ns() instead
- Global xmlnode_new_tag_pool (pool p, const char *name)
- This function is not aware of namespaces, use xmlnode_new_tag_pool_ns() instead
- Global xmlnode_put_attrib (xmlnode owner, const char *name, const char *value)
- This function is not aware of namespaces, use xmlnode_put_attrib_ns() instead
- Global xmlnode_wrap (xmlnode x, const char *wrapper)
- This function is not aware of namespaces. Use xmlnode_wrap_ns() instead.