comparison plugins/links/uri.hpp @ 785:7145a3df4cb7

misc: rename host to hostname, closes #941 @2h
author David Demelier <markand@malikania.fr>
date Wed, 07 Nov 2018 12:55:00 +0100
parents 8c44bbcbbab9
children 06cc2f95f479
comparison
equal deleted inserted replaced
783:d0bd19183743 785:7145a3df4cb7
32 /** 32 /**
33 * \file uri.hpp 33 * \file uri.hpp
34 */ 34 */
35 struct uri { 35 struct uri {
36 std::string scheme; //!< scheme (e.g. http) 36 std::string scheme; //!< scheme (e.g. http)
37 std::string host; //!< host (e.g. example.org) 37 std::string hostname; //!< host (e.g. example.org)
38 std::string port; //!< port (e.g. 8080) 38 std::string port; //!< port (e.g. 8080)
39 std::string path; //!< path (e.g. /foo/bar) 39 std::string path; //!< path (e.g. /foo/bar)
40 40
41 /** 41 /**
42 * Try to parse the uri from the link text. 42 * Try to parse the uri from the link text.