sftp-session-main.c 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /* sftp-session-main.c -- SFTP session initialization.
  2. *
  3. * Copyright (C) 2015 Artyom V. Poptsov <poptsov.artyom@gmail.com>
  4. *
  5. * This file is part of Guile-SSH.
  6. *
  7. * Guile-SSH is free software: you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation, either version 3 of the
  10. * License, or (at your option) any later version.
  11. *
  12. * Guile-SSH is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. #include <config.h>
  21. #include "threads.h"
  22. #include "sftp-session-type.h"
  23. #include "sftp-session-func.h"
  24. void
  25. init_sftp_session (void)
  26. {
  27. init_sftp_session_type ();
  28. init_sftp_session_func ();
  29. init_pthreads ();
  30. }
  31. /* sftp-session-main.c ends here. */