channel-main.c 945 B

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