diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/smbclient/Domain.cxx | 24 | ||||
-rw-r--r-- | src/lib/smbclient/Domain.hxx | 27 | ||||
-rw-r--r-- | src/neighbor/plugins/SmbclientNeighborPlugin.cxx | 3 |
3 files changed, 52 insertions, 2 deletions
diff --git a/src/lib/smbclient/Domain.cxx b/src/lib/smbclient/Domain.cxx new file mode 100644 index 000000000..00f5ee6c1 --- /dev/null +++ b/src/lib/smbclient/Domain.cxx @@ -0,0 +1,24 @@ +/* + * Copyright (C) 2003-2014 The Music Player Daemon Project + * http://www.musicpd.org + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#include "config.h" +#include "Domain.hxx" +#include "util/Domain.hxx" + +const Domain smbclient_domain("smbclient"); diff --git a/src/lib/smbclient/Domain.hxx b/src/lib/smbclient/Domain.hxx new file mode 100644 index 000000000..3b21c4e60 --- /dev/null +++ b/src/lib/smbclient/Domain.hxx @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2003-2014 The Music Player Daemon Project + * http://www.musicpd.org + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef MPD_SMBCLIENT_DOMAIN_HXX +#define MPD_SMBCLIENT_DOMAIN_HXX + +class Domain; + +extern const Domain smbclient_domain; + +#endif diff --git a/src/neighbor/plugins/SmbclientNeighborPlugin.cxx b/src/neighbor/plugins/SmbclientNeighborPlugin.cxx index ea3a6c2fd..2b81f3ceb 100644 --- a/src/neighbor/plugins/SmbclientNeighborPlugin.cxx +++ b/src/neighbor/plugins/SmbclientNeighborPlugin.cxx @@ -20,6 +20,7 @@ #include "config.h" #include "SmbclientNeighborPlugin.hxx" #include "lib/smbclient/Init.hxx" +#include "lib/smbclient/Domain.hxx" #include "neighbor/NeighborPlugin.hxx" #include "neighbor/Explorer.hxx" #include "neighbor/Listener.hxx" @@ -38,8 +39,6 @@ #include <list> #include <algorithm> -static constexpr Domain smbclient_domain("smbclient"); - class SmbclientNeighborExplorer final : public NeighborExplorer { struct Server { std::string name, comment; |