|
|
|
#include "ne_ssl.h" |
|
#include "ne_request.h" |
|
#include "ne_xml.h" |
|
|
|
/* |
|
* Stubs so that the functions are not marked as UND in the global symbol |
|
* table. Assuming that nothing that calls them are actually used in |
|
* gnome-vfs, they are bare. |
|
*/ |
|
|
|
void ne_ssl_context_trustcert(ne_ssl_context *ctx, const ne_ssl_certificate *cert) |
|
{ |
|
NE_DEBUG(NE_DBG_SSL, "SSL: stub ne_ssl_context_trustcert() in use\n"); |
|
return; |
|
} |
|
|
|
int ne_xml_parse_response(ne_request *req, ne_xml_parser *parser) |
|
{ |
|
NE_DEBUG(NE_DBG_XMLPARSE, "XML: stub ne_xml_parse_response() in use\n"); |
|
return 0; |
|
} |
|
|
|
int ne_xml_dispatch_request(ne_request *req, ne_xml_parser *parser) |
|
{ |
|
NE_DEBUG(NE_DBG_XML, "XML: stub ne_xml_dispatch_request() in use\n"); |
|
return 0; |
|
} |
|
|