Files
@ d11fdaf3e279
Branch filter:
Location: libtransport.git/spectrum/src/frontends/xmpp/formutils.h - annotation
d11fdaf3e279
2.1 KiB
text/plain
systemd: wait for network-online.target and add WantedBy=multi-user.target
Thanks to that, "systemctl enable spectrum2" does what expected, that is
makes Spectrum2 start on boot. Also, network.target doesn't tell anything
meaningful - it's just that the network stack is available.
Adding network-online.target makes sure that the network interfaces are up
before starting Spectrum2.
Thanks to that, "systemctl enable spectrum2" does what expected, that is
makes Spectrum2 start on boot. Also, network.target doesn't tell anything
meaningful - it's just that the network stack is available.
Adding network-online.target makes sure that the network interfaces are up
before starting Spectrum2.
d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d37e8afadb4b d37e8afadb4b d37e8afadb4b d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d37e8afadb4b d37e8afadb4b d37e8afadb4b d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 d04f7e19a7f6 | /**
* libtransport -- C++ library for easy XMPP Transports development
*
* Copyright (C) 2015, Jan Kaluza <hanzz.k@gmail.com>
*
* 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 02111-1301 USA
*/
#pragma once
#include "Swiften/Queries/Responder.h"
#include "Swiften/Elements/InBandRegistrationPayload.h"
#include "Swiften/Elements/RosterPayload.h"
#include <Swiften/Version.h>
#define HAVE_SWIFTEN_3 (SWIFTEN_VERSION >= 0x030000)
namespace Transport {
class AdHocCommand;
namespace FormUtils {
void addHiddenField(Swift::Form::ref form, const std::string &name, const std::string &value);
void addTextSingleField(Swift::Form::ref form, const std::string &name, const std::string &value,
const std::string &label, bool required = false);
void addTextPrivateField(Swift::Form::ref form, const std::string &name, const std::string &label,
bool required = false);
void addListSingleField(Swift::Form::ref form, const std::string &name, Swift::FormField::Option value,
const std::string &label, const std::string &def, bool required = false);
void addBooleanField(Swift::Form::ref form, const std::string &name, const std::string &value,
const std::string &label, bool required = false);
void addTextFixedField(Swift::Form::ref form, const std::string &value);
std::string fieldValue(Swift::FormField::ref);
std::string fieldValue(Swift::Form::ref, const std::string &key, const std::string &def);
}
}
|