1!--------------------------------------------------------------------------------------------------!
2!  DFTB+: general package for performing fast atomistic simulations                                !
3!  Copyright (C) 2006 - 2019  DFTB+ developers group                                               !
4!                                                                                                  !
5!  See the LICENSE file for terms of usage and distribution.                                       !
6!--------------------------------------------------------------------------------------------------!
7
8!> Socket interface library
9module dftbp_fsockets
10  use fsockets
11  implicit none
12
13#:if WITH_SOCKETS
14
15  !> Whether code was built with socket support
16  logical, parameter :: withSockets = .true.
17
18#:else
19
20  !> Whether code was built with socket support
21  logical, parameter :: withSockets = .false.
22
23#:endif
24
25end module dftbp_fsockets
26