opkg_pathfinder.h 881 B

1234567891011121314151617181920212223242526272829
  1. /* opkg_pathfinder.h - the opkg package management system
  2. Copyright (C) 2009 Camille Moncelier <moncelier@devlife.org>
  3. This program is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU General Public License as
  5. published by the Free Software Foundation; either version 2, or (at
  6. your option) any later version.
  7. This program is distributed in the hope that it will be useful, but
  8. WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. General Public License for more details.
  11. */
  12. #ifndef OPKG_PATHFINDER_H
  13. #define OPKG_PATHFINDER_H
  14. #include "config.h"
  15. #if defined(HAVE_OPENSSL)
  16. int pkcs7_pathfinder_verify_signers(PKCS7 * p7);
  17. #endif
  18. #if defined(HAVE_SSLCURL)
  19. CURLcode curl_ssl_ctx_function(CURL * curl, void *sslctx, void *parm);
  20. #endif
  21. #endif