aboutsummaryrefslogtreecommitdiff
path: root/util/wireshark
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2015-08-06 04:59:38 +0200
committerest31 <MTest31@outlook.com>2015-08-06 05:48:07 +0200
commit49cf66d78566de128ec8879044e9d9e2fac0ba1c (patch)
treea15a6ea655b65f7be25d98fa713410cafd710e11 /util/wireshark
parentbcf47bc67cf3e1c2f410a81e26ceab1bdab06b4a (diff)
downloadminetest-49cf66d78566de128ec8879044e9d9e2fac0ba1c.tar.gz
minetest-49cf66d78566de128ec8879044e9d9e2fac0ba1c.tar.bz2
minetest-49cf66d78566de128ec8879044e9d9e2fac0ba1c.zip
Initialize random for verification key generation too
Diffstat (limited to 'util/wireshark')
0 files changed, 0 insertions, 0 deletions
mplied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser 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. */ #pragma once #include <string> #include <set> #include <vector> class Settings; struct SubgameSpec { std::string id; std::string name; std::string author; int release; std::string path; std::string gamemods_path; std::set<std::string> addon_mods_paths; std::string menuicon_path; SubgameSpec(const std::string &id = "", const std::string &path = "", const std::string &gamemods_path = "", const std::set<std::string> &addon_mods_paths = std::set<std::string>(), const std::string &name = "", const std::string &menuicon_path = "", const std::string &author = "", int release = 0) : id(id), name(name), author(author), release(release), path(path), gamemods_path(gamemods_path), addon_mods_paths(addon_mods_paths), menuicon_path(menuicon_path) { } bool isValid() const { return (!id.empty() && !path.empty()); } };