From 357217326d570edda479daf6e8bdd9825c46a6c1 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Wed, 4 Apr 2018 21:54:15 +0200 Subject: [PATCH 1/8] some cleanups --- src/peer_connection.cpp | 38 +++++++++++++++++--------------------- 1 file changed, 17 insertions(+), 21 deletions(-) diff --git a/src/peer_connection.cpp b/src/peer_connection.cpp index 0f3495475..f11b8deb0 100644 --- a/src/peer_connection.cpp +++ b/src/peer_connection.cpp @@ -381,14 +381,12 @@ namespace libtorrent return; } - tcp::endpoint bound_ip = m_ses.bind_outgoing_socket(*m_socket - , m_remote.address(), ec); #ifndef TORRENT_DISABLE_LOGGING + tcp::endpoint const bound_ip = m_ses.bind_outgoing_socket(*m_socket + , m_remote.address(), ec); peer_log(peer_log_alert::outgoing, "BIND", "dst: %s ec: %s" , print_endpoint(bound_ip).c_str() , ec.message().c_str()); -#else - TORRENT_UNUSED(bound_ip); #endif if (ec) { @@ -2226,12 +2224,13 @@ namespace libtorrent boost::shared_ptr t = m_torrent.lock(); TORRENT_ASSERT(t); + torrent_info const& ti = t->torrent_file(); m_counters.inc_stats_counter(counters::piece_requests); #ifndef TORRENT_DISABLE_LOGGING const bool valid_piece_index - = r.piece >= 0 && r.piece < int(t->torrent_file().num_pieces()); + = r.piece >= 0 && r.piece < int(ti.num_pieces()); peer_log(peer_log_alert::incoming_message, "REQUEST" , "piece: %d s: %x l: %x", r.piece, r.start, r.length); @@ -2247,9 +2246,9 @@ namespace libtorrent "i: %d t: %d n: %d h: %d ss1: %d ss2: %d" , m_peer_interested , valid_piece_index - ? int(t->torrent_file().piece_size(r.piece)) + ? int(ti.piece_size(r.piece)) : -1 - , t->torrent_file().num_pieces() + , ti.num_pieces() , valid_piece_index ? t->has_piece_passed(r.piece) : 0 , m_superseed_piece[0] , m_superseed_piece[1]); @@ -2325,8 +2324,8 @@ namespace libtorrent peer_log(peer_log_alert::info, "INVALID_REQUEST", "peer is not interested " " t: %d n: %d block_limit: %d" , valid_piece_index - ? int(t->torrent_file().piece_size(r.piece)) : -1 - , t->torrent_file().num_pieces() + ? int(ti.piece_size(r.piece)) : -1 + , ti.num_pieces() , t->block_size()); peer_log(peer_log_alert::info, "INTERESTED", "artificial incoming INTERESTED message"); #endif @@ -2349,14 +2348,14 @@ namespace libtorrent // is legal and that the peer // is not choked if (r.piece < 0 - || r.piece >= t->torrent_file().num_pieces() + || r.piece >= ti.num_pieces() || (!t->has_piece_passed(r.piece) && !t->is_predictive_piece(r.piece) && !t->seed_mode()) || r.start < 0 - || r.start >= t->torrent_file().piece_size(r.piece) + || r.start >= ti.piece_size(r.piece) || r.length <= 0 - || r.length + r.start > t->torrent_file().piece_size(r.piece) + || r.length + r.start > ti.piece_size(r.piece) || r.length > t->block_size()) { m_counters.inc_stats_counter(counters::invalid_piece_requests); @@ -2366,8 +2365,8 @@ namespace libtorrent , "i: %d t: %d n: %d h: %d block_limit: %d" , m_peer_interested , valid_piece_index - ? int(t->torrent_file().piece_size(r.piece)) : -1 - , t->torrent_file().num_pieces() + ? int(ti.piece_size(r.piece)) : -1 + , ti.num_pieces() , t->has_piece_passed(r.piece) , t->block_size()); @@ -2414,7 +2413,7 @@ namespace libtorrent // if we have choked the client // ignore the request const int blocks_per_piece = static_cast( - (t->torrent_file().piece_length() + t->block_size() - 1) / t->block_size()); + (ti.piece_length() + t->block_size() - 1) / t->block_size()); // disconnect peers that downloads more than foo times an allowed // fast piece @@ -2455,7 +2454,7 @@ namespace libtorrent TORRENT_ASSERT(t->valid_metadata()); TORRENT_ASSERT(r.piece >= 0); - TORRENT_ASSERT(r.piece < t->torrent_file().num_pieces()); + TORRENT_ASSERT(r.piece < ti.num_pieces()); m_requests.push_back(r); @@ -5318,11 +5317,8 @@ namespace libtorrent peer_log(peer_log_alert::info, "SEED_MODE_FILE_HASH" , "piece: %d passed", j->piece); #endif - if (t) - { - if (t->seed_mode() && t->all_verified()) - t->leave_seed_mode(true); - } + if (t->seed_mode() && t->all_verified()) + t->leave_seed_mode(true); } // try to service the requests again, now that the piece From 9d83da110b10ef758051abdbafaf600318d535db Mon Sep 17 00:00:00 2001 From: Fernando Rodriguez Date: Fri, 6 Apr 2018 11:25:13 -0400 Subject: [PATCH 2/8] Delay hash_failed_alert until on_piece_sync() Delay the hash_failed_alert until after synchronizing with the IO thread so that it can be used to synchronize piece progress. --- src/torrent.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/torrent.cpp b/src/torrent.cpp index d3fc722e5..765fa779c 100644 --- a/src/torrent.cpp +++ b/src/torrent.cpp @@ -4525,9 +4525,6 @@ namespace { inc_stats_counter(counters::num_piece_failed); - if (m_ses.alerts().should_post()) - m_ses.alerts().emplace_alert(get_handle(), index); - std::vector::iterator it = std::lower_bound(m_predictive_pieces.begin() , m_predictive_pieces.end(), index); if (it != m_predictive_pieces.end() && *it == index) @@ -4728,6 +4725,9 @@ namespace { // ever downloaded for it. m_picker->restore_piece(j->piece); + if (m_ses.alerts().should_post()) + m_ses.alerts().emplace_alert(get_handle(), j->piece); + // we have to let the piece_picker know that // this piece failed the check as it can restore it // and mark it as being interesting for download From bf2f0a9c5540c0dbbea45a0a70743f9942ad4d0d Mon Sep 17 00:00:00 2001 From: "V.G. Bulavintsev" Date: Wed, 28 Feb 2018 11:50:41 +0100 Subject: [PATCH 3/8] Fix advertised window being counted twice in congestion check --- src/utp_stream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utp_stream.cpp b/src/utp_stream.cpp index e305296c5..423313574 100644 --- a/src/utp_stream.cpp +++ b/src/utp_stream.cpp @@ -1830,7 +1830,7 @@ bool utp_socket_impl::send_pkt(int const flags) // congestion window and the advertised receive window from // the other end. if (m_bytes_in_flight + payload_size > (std::min)(int(m_cwnd >> 16) - , int(m_adv_wnd - m_bytes_in_flight))) + , int(m_adv_wnd))) { // this means there's not enough room in the send window for // another packet. We have to hold off sending this data. From 257f625e2e7741d8889372ba0679f65810041c92 Mon Sep 17 00:00:00 2001 From: "V.G. Bulavintsev" Date: Thu, 1 Mar 2018 10:41:29 +0100 Subject: [PATCH 4/8] Increase m_in_buf_size and max_packet_reorder to better handle links with high latency --- src/utp_stream.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/utp_stream.cpp b/src/utp_stream.cpp index 423313574..6bc1b1aea 100644 --- a/src/utp_stream.cpp +++ b/src/utp_stream.cpp @@ -136,8 +136,6 @@ enum { ACK_MASK = 0xffff, - // the number of packets that'll fit in the reorder buffer - max_packets_reorder = 512, // if a packet receives more than this number of // duplicate acks, we'll trigger a fast re-send @@ -2862,6 +2860,10 @@ bool utp_socket_impl::incoming_packet(boost::uint8_t const* buf, int size if (ph->get_type() == ST_DATA) m_sm->inc_stats_counter(counters::utp_payload_pkts_in); + // the number of packets that'll fit in the reorder buffer + // incoming MTU of 1100 and minimal size of 16 packets are chosen arbitrarly + const boost::uint32_t max_packets_reorder = std::max(16, m_in_buf_size / 1100); + if (m_state != UTP_STATE_NONE && m_state != UTP_STATE_SYN_SENT && compare_less_wrap((m_ack_nr + max_packets_reorder) & ACK_MASK, ph->seq_nr, ACK_MASK)) From c08a6bf430b381c31e0152c640a030cbcc9858c8 Mon Sep 17 00:00:00 2001 From: "V.G. Bulavintsev" Date: Wed, 7 Mar 2018 16:44:35 +0100 Subject: [PATCH 5/8] Make SACK header to be able to take up the whole packet. Rename m_in_buf_size to m_receive_buffer_capacity --- src/utp_stream.cpp | 48 +++++++++++++++++++++++++--------------------- 1 file changed, 26 insertions(+), 22 deletions(-) diff --git a/src/utp_stream.cpp b/src/utp_stream.cpp index 6bc1b1aea..d68edff14 100644 --- a/src/utp_stream.cpp +++ b/src/utp_stream.cpp @@ -136,7 +136,6 @@ enum { ACK_MASK = 0xffff, - // if a packet receives more than this number of // duplicate acks, we'll trigger a fast re-send dup_ack_limit = 3, @@ -279,7 +278,7 @@ struct utp_socket_impl , m_written(0) , m_receive_buffer_size(0) , m_read_buffer_size(0) - , m_in_buf_size(1024 * 1024) + , m_receive_buffer_capacity(1024 * 1024) , m_in_packets(0) , m_out_packets(0) , m_send_delay(0) @@ -530,7 +529,7 @@ public: boost::int32_t m_read_buffer_size; // max number of bytes to allocate for receive buffer - boost::int32_t m_in_buf_size; + boost::int32_t m_receive_buffer_capacity; // this holds the 3 last delay measurements, // these are the actual corrected delay measurements. @@ -1790,16 +1789,6 @@ bool utp_socket_impl::send_pkt(int const flags) m_fast_resend_seq_nr = (m_fast_resend_seq_nr + 1) & ACK_MASK; } - int sack = 0; - if (m_inbuf.size()) - { - // the SACK bitfield should ideally fit all - // the pieces we have successfully received - sack = (m_inbuf.span() + 7) / 8; - if (sack > 32) sack = 32; - } - - boost::uint32_t const close_reason = m_close_reason; // MTU DISCOVERY @@ -1813,13 +1802,29 @@ bool utp_socket_impl::send_pkt(int const flags) && m_write_buffer_size >= m_mtu_floor * 3 && m_seq_nr != 0 && (m_cwnd >> 16) > m_mtu_floor * 3); + // for non MTU-probes, use the conservative packet size + int const effective_mtu = mtu_probe ? m_mtu : m_mtu_floor; + + boost::uint32_t const close_reason = m_close_reason; + + int sack = 0; + if (m_inbuf.size()) + { + const int max_sack_size = effective_mtu + - sizeof(utp_header) + - 2 // for sack padding/header + - (close_reason ? 6 : 0); + + // the SACK bitfield should ideally fit all + // the pieces we have successfully received + sack = (m_inbuf.span() + 7) / 8; + if (sack > max_sack_size) sack = max_sack_size; + } int const header_size = sizeof(utp_header) + (sack ? sack + 2 : 0) + (close_reason ? 6 : 0); - // for non MTU-probes, use the conservative packet size - int const effective_mtu = mtu_probe ? m_mtu : m_mtu_floor; int payload_size = (std::min)(m_write_buffer_size , effective_mtu - header_size); TORRENT_ASSERT(payload_size >= 0); @@ -2046,7 +2051,7 @@ bool utp_socket_impl::send_pkt(int const flags) } h->timestamp_difference_microseconds = m_reply_micro; - h->wnd_size = (std::max)(m_in_buf_size - m_buffered_incoming_bytes + h->wnd_size = (std::max)(m_receive_buffer_capacity - m_buffered_incoming_bytes - m_receive_buffer_size, boost::int32_t(0)); h->ack_nr = m_ack_nr; @@ -2547,7 +2552,7 @@ bool utp_socket_impl::consume_incoming_data( } if (m_read_buffer_size == 0 - && m_receive_buffer_size >= m_in_buf_size - m_buffered_incoming_bytes) + && m_receive_buffer_size >= m_receive_buffer_capacity - m_buffered_incoming_bytes) { // if we don't have a buffer from the upper layer, and the // number of queued up bytes, waiting for the upper layer, @@ -2555,7 +2560,7 @@ bool utp_socket_impl::consume_incoming_data( // more data packets UTP_LOG("%8p: ERROR: our advertized window is not honored. " "recv_buf: %d buffered_in: %d max_size: %d\n" - , static_cast(this), m_receive_buffer_size, m_buffered_incoming_bytes, m_in_buf_size); + , static_cast(this), m_receive_buffer_size, m_buffered_incoming_bytes, m_receive_buffer_capacity); return false; } @@ -2563,7 +2568,7 @@ bool utp_socket_impl::consume_incoming_data( { TORRENT_ASSERT(m_inbuf.at(m_ack_nr) == 0); - if (m_buffered_incoming_bytes + m_receive_buffer_size + payload_size > m_in_buf_size) + if (m_buffered_incoming_bytes + m_receive_buffer_size + payload_size > m_receive_buffer_capacity) { UTP_LOGV("%8p: other end is not honoring our advertised window, dropping packet\n" , static_cast(this)); @@ -2620,7 +2625,7 @@ bool utp_socket_impl::consume_incoming_data( return true; } - if (m_buffered_incoming_bytes + m_receive_buffer_size + payload_size > m_in_buf_size) + if (m_buffered_incoming_bytes + m_receive_buffer_size + payload_size > m_receive_buffer_capacity) { UTP_LOGV("%8p: other end is not honoring our advertised window, dropping packet %d\n" , static_cast(this), int(ph->seq_nr)); @@ -2861,8 +2866,7 @@ bool utp_socket_impl::incoming_packet(boost::uint8_t const* buf, int size m_sm->inc_stats_counter(counters::utp_payload_pkts_in); // the number of packets that'll fit in the reorder buffer - // incoming MTU of 1100 and minimal size of 16 packets are chosen arbitrarly - const boost::uint32_t max_packets_reorder = std::max(16, m_in_buf_size / 1100); + const boost::uint32_t max_packets_reorder = std::max(16, m_receive_buffer_capacity / 1100); if (m_state != UTP_STATE_NONE && m_state != UTP_STATE_SYN_SENT From c5a5e084dd5d59ca340f6c4ec83a111e2d8dafd4 Mon Sep 17 00:00:00 2001 From: arvidn Date: Sun, 8 Apr 2018 11:09:42 +0200 Subject: [PATCH 6/8] :strtoll() returns LLONG_MAX if the input overflows. Handle this case properly in the http parser --- src/http_parser.cpp | 9 ++++++--- test/test_http_parser.cpp | 42 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+), 3 deletions(-) diff --git a/src/http_parser.cpp b/src/http_parser.cpp index 541b327c9..1947d54c2 100644 --- a/src/http_parser.cpp +++ b/src/http_parser.cpp @@ -281,7 +281,8 @@ restart_response: if (name == "content-length") { m_content_length = strtoll(value.c_str(), 0, 10); - if (m_content_length < 0) + if (m_content_length < 0 + || m_content_length == std::numeric_limits::max()) { m_state = error_state; error = true; @@ -304,7 +305,8 @@ restart_response: if (string_begins_no_case("bytes ", ptr)) ptr += 6; char* end; m_range_start = strtoll(ptr, &end, 10); - if (m_range_start < 0) + if (m_range_start < 0 + || m_range_start == std::numeric_limits::max()) { m_state = error_state; error = true; @@ -316,7 +318,8 @@ restart_response: { ptr = end + 1; m_range_end = strtoll(ptr, &end, 10); - if (m_range_end < 0) + if (m_range_end < 0 + || m_range_end == std::numeric_limits::max()) { m_state = error_state; error = true; diff --git a/test/test_http_parser.cpp b/test/test_http_parser.cpp index 6c9ca34bf..f43039f89 100644 --- a/test/test_http_parser.cpp +++ b/test/test_http_parser.cpp @@ -537,6 +537,48 @@ TORRENT_TEST(invalid_content_range_end) TEST_CHECK(boost::get<2>(received) == true); } +TORRENT_TEST(overflow_content_length) +{ + char const* chunked_input = + "HTTP/1.1 200 OK\r\n" + "Content-Length: 9999999999999999999999999999\r\n" + "\r\n"; + + http_parser parser; + boost::tuple const received + = feed_bytes(parser, chunked_input); + + TEST_CHECK(boost::get<2>(received) == true); +} + +TORRENT_TEST(overflow_content_range_end) +{ + char const* chunked_input = + "HTTP/1.1 206 OK\n" + "Content-Range: bytes 0-999999999999999999999999\n" + "\n"; + + http_parser parser; + boost::tuple const received + = feed_bytes(parser, chunked_input); + + TEST_CHECK(boost::get<2>(received) == true); +} + +TORRENT_TEST(overflow_content_range_begin) +{ + char const* chunked_input = + "HTTP/1.1 206 OK\n" + "Content-Range: bytes 999999999999999999999999-0\n" + "\n"; + + http_parser parser; + boost::tuple const received + = feed_bytes(parser, chunked_input); + + TEST_CHECK(boost::get<2>(received) == true); +} + TORRENT_TEST(invalid_chunk_afl) { boost::uint8_t const invalid_chunked_input[] = { From 105934e578feb7878730ee079ccc0cb7ff4c52cc Mon Sep 17 00:00:00 2001 From: arvidn Date: Sun, 8 Apr 2018 23:08:39 +0200 Subject: [PATCH 7/8] bump version --- CMakeLists.txt | 2 +- Jamfile | 2 +- bindings/python/setup.py | 2 +- configure.ac | 2 +- docs/building.rst | 2 +- docs/contributing.rst | 2 +- docs/dht_rss.rst | 2 +- docs/dht_sec.rst | 2 +- docs/dht_store.rst | 2 +- docs/examples.rst | 2 +- docs/features.rst | 2 +- docs/gen_reference_doc.py | 2 +- docs/hacking.rst | 2 +- docs/index.rst | 2 +- docs/manual.rst | 2 +- docs/troubleshooting.rst | 2 +- docs/tuning.rst | 2 +- docs/tutorial.rst | 2 +- docs/utp.rst | 2 +- include/libtorrent/version.hpp | 6 +++--- src/settings_pack.cpp | 2 +- 21 files changed, 23 insertions(+), 23 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7626986e3..970eac352 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 2.6) project(libtorrent) set (SOVERSION "8") -set (VERSION "1.1.6") +set (VERSION "1.1.7") set(sources web_connection_base diff --git a/Jamfile b/Jamfile index ceeda7d9e..9d558b2bd 100644 --- a/Jamfile +++ b/Jamfile @@ -57,7 +57,7 @@ else : : $(boost-include-path) ; } -VERSION = 1.1.6 ; +VERSION = 1.1.7 ; rule linking ( properties * ) { diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 3ea9c2c2d..69ebb4df3 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -154,7 +154,7 @@ else: libraries = ['torrent-rasterbar'] + flags.libraries)] setup(name = 'python-libtorrent', - version = '1.1.6', + version = '1.1.7', author = 'Arvid Norberg', author_email = 'arvid@libtorrent.org', description = 'Python bindings for libtorrent-rasterbar', diff --git a/configure.ac b/configure.ac index a64d21b63..3a16dbfcd 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ AC_PREREQ([2.63]) -AC_INIT([libtorrent-rasterbar],[1.1.6],[arvid@libtorrent.org], +AC_INIT([libtorrent-rasterbar],[1.1.7],[arvid@libtorrent.org], [libtorrent-rasterbar],[http://www.libtorrent.org]) AC_CONFIG_SRCDIR([src/torrent.cpp]) AC_CONFIG_AUX_DIR([build-aux]) diff --git a/docs/building.rst b/docs/building.rst index 679daf3bd..2f5e98a7a 100644 --- a/docs/building.rst +++ b/docs/building.rst @@ -3,7 +3,7 @@ libtorrent manual ================= :Author: Arvid Norberg, arvid@libtorrent.org -:Version: 1.1.6 +:Version: 1.1.7 .. contents:: Table of contents :depth: 2 diff --git a/docs/contributing.rst b/docs/contributing.rst index 72f1c55cc..55d52a67a 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -3,7 +3,7 @@ libtorrent manual ================= :Author: Arvid Norberg, arvid@libtorrent.org -:Version: 1.1.6 +:Version: 1.1.7 .. contents:: Table of contents :depth: 2 diff --git a/docs/dht_rss.rst b/docs/dht_rss.rst index 68b439a4f..a53200150 100644 --- a/docs/dht_rss.rst +++ b/docs/dht_rss.rst @@ -3,7 +3,7 @@ BitTorrent extension for DHT RSS feeds ====================================== :Author: Arvid Norberg, arvid@libtorrent.org -:Version: 1.1.6 +:Version: 1.1.7 .. contents:: Table of contents :depth: 2 diff --git a/docs/dht_sec.rst b/docs/dht_sec.rst index 86e858e94..79ff3181a 100644 --- a/docs/dht_sec.rst +++ b/docs/dht_sec.rst @@ -3,7 +3,7 @@ BitTorrent DHT security extension ================================= :Author: Arvid Norberg, arvid@libtorrent.org -:Version: 1.1.6 +:Version: 1.1.7 .. contents:: Table of contents :depth: 2 diff --git a/docs/dht_store.rst b/docs/dht_store.rst index f4d4e457d..b0aa943d9 100644 --- a/docs/dht_store.rst +++ b/docs/dht_store.rst @@ -3,7 +3,7 @@ BitTorrent extension for arbitrary DHT store ============================================ :Author: Arvid Norberg, arvid@libtorrent.org -:Version: 1.1.6 +:Version: 1.1.7 .. contents:: Table of contents :depth: 2 diff --git a/docs/examples.rst b/docs/examples.rst index 9b7764a3d..8a29fcda5 100644 --- a/docs/examples.rst +++ b/docs/examples.rst @@ -3,7 +3,7 @@ libtorrent Examples =================== :Author: Arvid Norberg, arvid@libtorrent.org -:Version: 1.1.6 +:Version: 1.1.7 .. contents:: Table of contents :depth: 2 diff --git a/docs/features.rst b/docs/features.rst index 41b9d9662..034f8cec7 100644 --- a/docs/features.rst +++ b/docs/features.rst @@ -3,7 +3,7 @@ libtorrent manual ================= :Author: Arvid Norberg, arvid@libtorrent.org -:Version: 1.1.6 +:Version: 1.1.7 .. contents:: Table of contents :depth: 2 diff --git a/docs/gen_reference_doc.py b/docs/gen_reference_doc.py index ca983d44b..bfcce9143 100644 --- a/docs/gen_reference_doc.py +++ b/docs/gen_reference_doc.py @@ -1027,7 +1027,7 @@ for cat in categories: out.write(''' :Author: Arvid Norberg, arvid@libtorrent.org -:Version: 1.1.6 +:Version: 1.1.7 `home`__ diff --git a/docs/hacking.rst b/docs/hacking.rst index ffde08d56..59657053c 100644 --- a/docs/hacking.rst +++ b/docs/hacking.rst @@ -3,7 +3,7 @@ libtorrent hacking ================== :Author: Arvid Norberg, arvid@libtorrent.org -:Version: 1.1.6 +:Version: 1.1.7 .. contents:: Table of contents :depth: 2 diff --git a/docs/index.rst b/docs/index.rst index 7d473fd6a..78dfef4c9 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,5 +1,5 @@ :Author: Arvid Norberg, arvid@libtorrent.org -:Version: 1.1.6 +:Version: 1.1.7 .. raw:: html diff --git a/docs/manual.rst b/docs/manual.rst index ad8fe6769..2efb6b680 100644 --- a/docs/manual.rst +++ b/docs/manual.rst @@ -3,7 +3,7 @@ libtorrent API Documentation ============================ :Author: Arvid Norberg, arvid@libtorrent.org -:Version: 1.1.6 +:Version: 1.1.7 .. contents:: Table of contents :depth: 1 diff --git a/docs/troubleshooting.rst b/docs/troubleshooting.rst index 862973a7d..fa1894adc 100644 --- a/docs/troubleshooting.rst +++ b/docs/troubleshooting.rst @@ -3,7 +3,7 @@ libtorrent manual ================= :Author: Arvid Norberg, arvid@libtorrent.org -:Version: 1.1.6 +:Version: 1.1.7 .. contents:: Table of contents :depth: 2 diff --git a/docs/tuning.rst b/docs/tuning.rst index c4aabf8f7..9510148f6 100644 --- a/docs/tuning.rst +++ b/docs/tuning.rst @@ -3,7 +3,7 @@ libtorrent manual ================= :Author: Arvid Norberg, arvid@libtorrent.org -:Version: 1.1.6 +:Version: 1.1.7 .. contents:: Table of contents :depth: 2 diff --git a/docs/tutorial.rst b/docs/tutorial.rst index 7e7b0579f..968712bc9 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -3,7 +3,7 @@ libtorrent manual ================= :Author: Arvid Norberg, arvid@libtorrent.org -:Version: 1.1.6 +:Version: 1.1.7 .. contents:: Table of contents :depth: 2 diff --git a/docs/utp.rst b/docs/utp.rst index d8b6649ee..8b097cc15 100644 --- a/docs/utp.rst +++ b/docs/utp.rst @@ -3,7 +3,7 @@ libtorrent manual ================= :Author: Arvid Norberg, arvid@libtorrent.org -:Version: 1.1.6 +:Version: 1.1.7 .. contents:: Table of contents :depth: 2 diff --git a/include/libtorrent/version.hpp b/include/libtorrent/version.hpp index e386311ca..6e0268ba7 100644 --- a/include/libtorrent/version.hpp +++ b/include/libtorrent/version.hpp @@ -37,14 +37,14 @@ POSSIBILITY OF SUCH DAMAGE. #define LIBTORRENT_VERSION_MAJOR 1 #define LIBTORRENT_VERSION_MINOR 1 -#define LIBTORRENT_VERSION_TINY 6 +#define LIBTORRENT_VERSION_TINY 7 // the format of this version is: MMmmtt // M = Major version, m = minor version, t = tiny version #define LIBTORRENT_VERSION_NUM ((LIBTORRENT_VERSION_MAJOR * 10000) + (LIBTORRENT_VERSION_MINOR * 100) + LIBTORRENT_VERSION_TINY) -#define LIBTORRENT_VERSION "1.1.6.0" -#define LIBTORRENT_REVISION "473b86a" +#define LIBTORRENT_VERSION "1.1.7.0" +#define LIBTORRENT_REVISION "c5a5e084d" namespace libtorrent { diff --git a/src/settings_pack.cpp b/src/settings_pack.cpp index e0a95b9e1..6d01c878c 100644 --- a/src/settings_pack.cpp +++ b/src/settings_pack.cpp @@ -148,7 +148,7 @@ namespace libtorrent SET_NOPREV(proxy_username, "", &session_impl::update_proxy), SET_NOPREV(proxy_password, "", &session_impl::update_proxy), SET_NOPREV(i2p_hostname, "", &session_impl::update_i2p_bridge), - SET_NOPREV(peer_fingerprint, "-LT1160-", 0), + SET_NOPREV(peer_fingerprint, "-LT1170-", 0), SET_NOPREV(dht_bootstrap_nodes, "dht.libtorrent.org:25401", &session_impl::update_dht_bootstrap_nodes) }; From aaf9304a3b545ae7a0249716451d4bc222ae69e2 Mon Sep 17 00:00:00 2001 From: arvidn Date: Mon, 9 Apr 2018 09:04:33 +0200 Subject: [PATCH 8/8] update year in copyright header --- AUTHORS | 2 +- COPYING | 2 +- LICENSE | 2 +- docs/index.rst | 2 +- include/libtorrent/add_torrent_params.hpp | 2 +- include/libtorrent/address.hpp | 2 +- include/libtorrent/alert.hpp | 2 +- include/libtorrent/alert_manager.hpp | 2 +- include/libtorrent/alert_types.hpp | 2 +- include/libtorrent/alloca.hpp | 2 +- include/libtorrent/allocator.hpp | 2 +- include/libtorrent/announce_entry.hpp | 2 +- include/libtorrent/assert.hpp | 2 +- include/libtorrent/bandwidth_limit.hpp | 2 +- include/libtorrent/bandwidth_manager.hpp | 2 +- include/libtorrent/bandwidth_queue_entry.hpp | 2 +- include/libtorrent/bandwidth_socket.hpp | 2 +- include/libtorrent/bdecode.hpp | 2 +- include/libtorrent/bencode.hpp | 2 +- include/libtorrent/bitfield.hpp | 2 +- include/libtorrent/block_cache.hpp | 2 +- include/libtorrent/bloom_filter.hpp | 2 +- include/libtorrent/broadcast_socket.hpp | 2 +- include/libtorrent/bt_peer_connection.hpp | 4 ++-- include/libtorrent/buffer.hpp | 2 +- include/libtorrent/build_config.hpp | 2 +- include/libtorrent/chained_buffer.hpp | 2 +- include/libtorrent/choker.hpp | 2 +- include/libtorrent/close_reason.hpp | 2 +- include/libtorrent/config.hpp | 2 +- include/libtorrent/copy_ptr.hpp | 2 +- include/libtorrent/crc32c.hpp | 2 +- include/libtorrent/create_torrent.hpp | 2 +- include/libtorrent/deadline_timer.hpp | 2 +- include/libtorrent/debug.hpp | 2 +- include/libtorrent/disk_buffer_holder.hpp | 2 +- include/libtorrent/disk_buffer_pool.hpp | 2 +- include/libtorrent/disk_interface.hpp | 2 +- include/libtorrent/disk_io_job.hpp | 2 +- include/libtorrent/disk_io_thread.hpp | 2 +- include/libtorrent/disk_job_pool.hpp | 2 +- include/libtorrent/disk_observer.hpp | 2 +- include/libtorrent/entry.hpp | 2 +- include/libtorrent/enum_net.hpp | 2 +- include/libtorrent/error.hpp | 2 +- include/libtorrent/error_code.hpp | 2 +- include/libtorrent/export.hpp | 2 +- include/libtorrent/extensions.hpp | 2 +- include/libtorrent/extensions/lt_trackers.hpp | 2 +- include/libtorrent/extensions/metadata_transfer.hpp | 2 +- include/libtorrent/extensions/smart_ban.hpp | 2 +- include/libtorrent/extensions/ut_metadata.hpp | 2 +- include/libtorrent/file.hpp | 2 +- include/libtorrent/file_pool.hpp | 2 +- include/libtorrent/file_storage.hpp | 2 +- include/libtorrent/fingerprint.hpp | 2 +- include/libtorrent/fwd.hpp | 2 +- include/libtorrent/gzip.hpp | 2 +- include/libtorrent/hasher.hpp | 2 +- include/libtorrent/heterogeneous_queue.hpp | 2 +- include/libtorrent/hex.hpp | 2 +- include/libtorrent/http_connection.hpp | 2 +- include/libtorrent/http_parser.hpp | 2 +- include/libtorrent/http_seed_connection.hpp | 2 +- include/libtorrent/http_stream.hpp | 2 +- include/libtorrent/http_tracker_connection.hpp | 2 +- include/libtorrent/i2p_stream.hpp | 2 +- include/libtorrent/identify_client.hpp | 2 +- include/libtorrent/instantiate_connection.hpp | 2 +- include/libtorrent/io.hpp | 2 +- include/libtorrent/io_service.hpp | 2 +- include/libtorrent/io_service_fwd.hpp | 2 +- include/libtorrent/ip_filter.hpp | 2 +- include/libtorrent/ip_voter.hpp | 2 +- include/libtorrent/kademlia/dht_observer.hpp | 2 +- include/libtorrent/kademlia/dht_storage.hpp | 2 +- include/libtorrent/kademlia/dht_tracker.hpp | 2 +- include/libtorrent/kademlia/dos_blocker.hpp | 2 +- include/libtorrent/kademlia/find_data.hpp | 2 +- include/libtorrent/kademlia/get_peers.hpp | 2 +- include/libtorrent/kademlia/msg.hpp | 2 +- include/libtorrent/kademlia/node.hpp | 2 +- include/libtorrent/kademlia/node_entry.hpp | 2 +- include/libtorrent/kademlia/node_id.hpp | 2 +- include/libtorrent/kademlia/observer.hpp | 2 +- include/libtorrent/kademlia/put_data.hpp | 2 +- include/libtorrent/kademlia/refresh.hpp | 2 +- include/libtorrent/kademlia/routing_table.hpp | 2 +- include/libtorrent/kademlia/rpc_manager.hpp | 2 +- include/libtorrent/kademlia/traversal_algorithm.hpp | 2 +- include/libtorrent/lazy_entry.hpp | 2 +- include/libtorrent/link.hpp | 2 +- include/libtorrent/linked_list.hpp | 2 +- include/libtorrent/lsd.hpp | 2 +- include/libtorrent/magnet_uri.hpp | 2 +- include/libtorrent/max.hpp | 2 +- include/libtorrent/natpmp.hpp | 2 +- include/libtorrent/network_thread_pool.hpp | 2 +- include/libtorrent/operations.hpp | 2 +- include/libtorrent/packet_buffer.hpp | 2 +- include/libtorrent/parse_url.hpp | 2 +- include/libtorrent/part_file.hpp | 2 +- include/libtorrent/pe_crypto.hpp | 2 +- include/libtorrent/peer.hpp | 2 +- include/libtorrent/peer_class.hpp | 2 +- include/libtorrent/peer_class_set.hpp | 2 +- include/libtorrent/peer_class_type_filter.hpp | 2 +- include/libtorrent/peer_connection.hpp | 2 +- include/libtorrent/peer_connection_handle.hpp | 2 +- include/libtorrent/peer_connection_interface.hpp | 2 +- include/libtorrent/peer_id.hpp | 2 +- include/libtorrent/peer_info.hpp | 2 +- include/libtorrent/peer_list.hpp | 2 +- include/libtorrent/peer_request.hpp | 2 +- include/libtorrent/performance_counters.hpp | 2 +- include/libtorrent/piece_block_progress.hpp | 2 +- include/libtorrent/piece_picker.hpp | 2 +- include/libtorrent/proxy_base.hpp | 2 +- include/libtorrent/random.hpp | 2 +- include/libtorrent/receive_buffer.hpp | 2 +- include/libtorrent/request_blocks.hpp | 2 +- include/libtorrent/resolve_links.hpp | 2 +- include/libtorrent/resolver.hpp | 2 +- include/libtorrent/resolver_interface.hpp | 2 +- include/libtorrent/rss.hpp | 2 +- include/libtorrent/session.hpp | 2 +- include/libtorrent/session_handle.hpp | 2 +- include/libtorrent/session_settings.hpp | 2 +- include/libtorrent/session_stats.hpp | 2 +- include/libtorrent/session_status.hpp | 2 +- include/libtorrent/settings_pack.hpp | 2 +- include/libtorrent/sha1_hash.hpp | 2 +- include/libtorrent/sliding_average.hpp | 2 +- include/libtorrent/socket.hpp | 2 +- include/libtorrent/socket_io.hpp | 2 +- include/libtorrent/socket_type.hpp | 2 +- include/libtorrent/socket_type_fwd.hpp | 2 +- include/libtorrent/socks5_stream.hpp | 2 +- include/libtorrent/ssl_stream.hpp | 2 +- include/libtorrent/stack_allocator.hpp | 2 +- include/libtorrent/stat.hpp | 2 +- include/libtorrent/stat_cache.hpp | 2 +- include/libtorrent/storage.hpp | 2 +- include/libtorrent/storage_defs.hpp | 2 +- include/libtorrent/string_util.hpp | 2 +- include/libtorrent/tailqueue.hpp | 2 +- include/libtorrent/thread.hpp | 2 +- include/libtorrent/thread_pool.hpp | 2 +- include/libtorrent/time.hpp | 2 +- include/libtorrent/timestamp_history.hpp | 2 +- include/libtorrent/torrent.hpp | 2 +- include/libtorrent/torrent_handle.hpp | 2 +- include/libtorrent/torrent_info.hpp | 2 +- include/libtorrent/torrent_peer.hpp | 2 +- include/libtorrent/torrent_peer_allocator.hpp | 2 +- include/libtorrent/torrent_status.hpp | 2 +- include/libtorrent/tracker_manager.hpp | 2 +- include/libtorrent/udp_socket.hpp | 2 +- include/libtorrent/udp_tracker_connection.hpp | 2 +- include/libtorrent/uncork_interface.hpp | 2 +- include/libtorrent/union_endpoint.hpp | 2 +- include/libtorrent/upnp.hpp | 2 +- include/libtorrent/utf8.hpp | 2 +- include/libtorrent/utp_socket_manager.hpp | 2 +- include/libtorrent/utp_stream.hpp | 2 +- include/libtorrent/vector_utils.hpp | 2 +- include/libtorrent/version.hpp | 2 +- include/libtorrent/web_connection_base.hpp | 2 +- include/libtorrent/web_peer_connection.hpp | 2 +- include/libtorrent/xml_parse.hpp | 2 +- src/alert.cpp | 2 +- src/alert_manager.cpp | 2 +- src/allocator.cpp | 2 +- src/announce_entry.cpp | 2 +- src/assert.cpp | 2 +- src/bandwidth_limit.cpp | 2 +- src/bandwidth_manager.cpp | 2 +- src/bandwidth_queue_entry.cpp | 2 +- src/bdecode.cpp | 2 +- src/bitfield.cpp | 2 +- src/block_cache.cpp | 2 +- src/bloom_filter.cpp | 2 +- src/broadcast_socket.cpp | 2 +- src/bt_peer_connection.cpp | 4 ++-- src/chained_buffer.cpp | 2 +- src/choker.cpp | 2 +- src/close_reason.cpp | 2 +- src/cpuid.cpp | 2 +- src/crc32c.cpp | 2 +- src/create_torrent.cpp | 2 +- src/disk_buffer_holder.cpp | 2 +- src/disk_buffer_pool.cpp | 2 +- src/disk_io_job.cpp | 2 +- src/disk_io_thread.cpp | 2 +- src/disk_job_pool.cpp | 2 +- src/entry.cpp | 2 +- src/enum_net.cpp | 2 +- src/error_code.cpp | 2 +- src/escape_string.cpp | 2 +- src/file.cpp | 2 +- src/file_pool.cpp | 2 +- src/file_progress.cpp | 2 +- src/file_storage.cpp | 2 +- src/fingerprint.cpp | 2 +- src/gzip.cpp | 2 +- src/hasher.cpp | 2 +- src/hex.cpp | 2 +- src/http_connection.cpp | 2 +- src/http_parser.cpp | 2 +- src/http_seed_connection.cpp | 2 +- src/http_stream.cpp | 2 +- src/http_tracker_connection.cpp | 2 +- src/i2p_stream.cpp | 2 +- src/identify_client.cpp | 2 +- src/instantiate_connection.cpp | 2 +- src/ip_filter.cpp | 2 +- src/ip_voter.cpp | 2 +- src/kademlia/dht_storage.cpp | 2 +- src/kademlia/dht_tracker.cpp | 2 +- src/kademlia/dos_blocker.cpp | 2 +- src/kademlia/find_data.cpp | 2 +- src/kademlia/get_peers.cpp | 2 +- src/kademlia/msg.cpp | 2 +- src/kademlia/node.cpp | 2 +- src/kademlia/node_entry.cpp | 2 +- src/kademlia/node_id.cpp | 2 +- src/kademlia/put_data.cpp | 2 +- src/kademlia/refresh.cpp | 2 +- src/kademlia/routing_table.cpp | 2 +- src/kademlia/rpc_manager.cpp | 2 +- src/kademlia/traversal_algorithm.cpp | 2 +- src/lazy_bdecode.cpp | 2 +- src/lsd.cpp | 2 +- src/lt_trackers.cpp | 2 +- src/magnet_uri.cpp | 2 +- src/merkle.cpp | 2 +- src/metadata_transfer.cpp | 2 +- src/natpmp.cpp | 2 +- src/packet_buffer.cpp | 2 +- src/parse_url.cpp | 2 +- src/part_file.cpp | 2 +- src/pe_crypto.cpp | 2 +- src/peer_class.cpp | 2 +- src/peer_class_set.cpp | 2 +- src/peer_connection.cpp | 2 +- src/peer_connection_handle.cpp | 2 +- src/peer_list.cpp | 2 +- src/performance_counters.cpp | 2 +- src/piece_picker.cpp | 2 +- src/platform_util.cpp | 2 +- src/proxy_base.cpp | 2 +- src/proxy_settings.cpp | 2 +- src/random.cpp | 2 +- src/receive_buffer.cpp | 2 +- src/request_blocks.cpp | 2 +- src/resolve_links.cpp | 2 +- src/resolver.cpp | 2 +- src/rss.cpp | 2 +- src/session.cpp | 2 +- src/session_call.cpp | 2 +- src/session_handle.cpp | 2 +- src/session_impl.cpp | 2 +- src/session_settings.cpp | 2 +- src/session_stats.cpp | 2 +- src/settings_pack.cpp | 2 +- src/smart_ban.cpp | 2 +- src/socket_io.cpp | 2 +- src/socket_type.cpp | 2 +- src/socks5_stream.cpp | 2 +- src/stat.cpp | 2 +- src/stat_cache.cpp | 2 +- src/storage.cpp | 2 +- src/string_util.cpp | 2 +- src/thread.cpp | 2 +- src/time.cpp | 2 +- src/timestamp_history.cpp | 2 +- src/torrent.cpp | 2 +- src/torrent_handle.cpp | 2 +- src/torrent_info.cpp | 2 +- src/torrent_peer.cpp | 2 +- src/torrent_peer_allocator.cpp | 2 +- src/torrent_status.cpp | 2 +- src/tracker_manager.cpp | 2 +- src/udp_socket.cpp | 2 +- src/udp_tracker_connection.cpp | 2 +- src/upnp.cpp | 2 +- src/ut_metadata.cpp | 2 +- src/ut_pex.cpp | 2 +- src/utf8.cpp | 2 +- src/utp_socket_manager.cpp | 2 +- src/utp_stream.cpp | 2 +- src/version.cpp | 2 +- src/web_connection_base.cpp | 2 +- src/web_peer_connection.cpp | 2 +- src/xml_parse.cpp | 2 +- 295 files changed, 297 insertions(+), 297 deletions(-) diff --git a/AUTHORS b/AUTHORS index 7c2005c15..928ebe9e5 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,4 +1,4 @@ -Written by Arvid Norberg. Copyright (c) 2003-2016 +Written by Arvid Norberg. Copyright (c) 2003-2018 Contributions by: Andrei Kurushin diff --git a/COPYING b/COPYING index d20e56942..e666c6d6a 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/LICENSE b/LICENSE index 80aa2da68..941f5fa8e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/docs/index.rst b/docs/index.rst index 78dfef4c9..b4ab21052 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -181,7 +181,7 @@ list or posted to the `bug tracker`_. Acknowledgements ================ -Written by Arvid Norberg. Copyright |copy| 2003-2016 +Written by Arvid Norberg. Copyright |copy| 2003-2018 Contributions by Steven Siloti, Magnus Jonsson, Daniel Wallin and Cory Nelson diff --git a/include/libtorrent/add_torrent_params.hpp b/include/libtorrent/add_torrent_params.hpp index 99c004857..69e0c29d0 100644 --- a/include/libtorrent/add_torrent_params.hpp +++ b/include/libtorrent/add_torrent_params.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/address.hpp b/include/libtorrent/address.hpp index 0682991b5..ad8b684ee 100644 --- a/include/libtorrent/address.hpp +++ b/include/libtorrent/address.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/alert.hpp b/include/libtorrent/alert.hpp index 3bd389b4b..b2d6ecc19 100644 --- a/include/libtorrent/alert.hpp +++ b/include/libtorrent/alert.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg, Daniel Wallin +Copyright (c) 2003-2018, Arvid Norberg, Daniel Wallin All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/alert_manager.hpp b/include/libtorrent/alert_manager.hpp index 017240264..8449b09f4 100644 --- a/include/libtorrent/alert_manager.hpp +++ b/include/libtorrent/alert_manager.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg, Daniel Wallin +Copyright (c) 2003-2018, Arvid Norberg, Daniel Wallin All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/alert_types.hpp b/include/libtorrent/alert_types.hpp index b4bc43410..ec9ab84f3 100644 --- a/include/libtorrent/alert_types.hpp +++ b/include/libtorrent/alert_types.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/alloca.hpp b/include/libtorrent/alloca.hpp index 984c773da..a552fe585 100644 --- a/include/libtorrent/alloca.hpp +++ b/include/libtorrent/alloca.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/allocator.hpp b/include/libtorrent/allocator.hpp index 3c04aaea6..43b5888aa 100644 --- a/include/libtorrent/allocator.hpp +++ b/include/libtorrent/allocator.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/announce_entry.hpp b/include/libtorrent/announce_entry.hpp index 506d46a8c..9e8f2d1d7 100644 --- a/include/libtorrent/announce_entry.hpp +++ b/include/libtorrent/announce_entry.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2015-2016, Arvid Norberg +Copyright (c) 2015-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/assert.hpp b/include/libtorrent/assert.hpp index 843472723..78ac45760 100644 --- a/include/libtorrent/assert.hpp +++ b/include/libtorrent/assert.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/bandwidth_limit.hpp b/include/libtorrent/bandwidth_limit.hpp index 259b2a308..bf5a36b20 100644 --- a/include/libtorrent/bandwidth_limit.hpp +++ b/include/libtorrent/bandwidth_limit.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/bandwidth_manager.hpp b/include/libtorrent/bandwidth_manager.hpp index 26b99b14e..df63405d3 100644 --- a/include/libtorrent/bandwidth_manager.hpp +++ b/include/libtorrent/bandwidth_manager.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/bandwidth_queue_entry.hpp b/include/libtorrent/bandwidth_queue_entry.hpp index 61af5c2b8..a9e591db8 100644 --- a/include/libtorrent/bandwidth_queue_entry.hpp +++ b/include/libtorrent/bandwidth_queue_entry.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/bandwidth_socket.hpp b/include/libtorrent/bandwidth_socket.hpp index 9bf7f3230..e8d96feaa 100644 --- a/include/libtorrent/bandwidth_socket.hpp +++ b/include/libtorrent/bandwidth_socket.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/bdecode.hpp b/include/libtorrent/bdecode.hpp index 065335498..cde025663 100644 --- a/include/libtorrent/bdecode.hpp +++ b/include/libtorrent/bdecode.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2015-2016, Arvid Norberg +Copyright (c) 2015-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/bencode.hpp b/include/libtorrent/bencode.hpp index 761b13a76..27c4852df 100644 --- a/include/libtorrent/bencode.hpp +++ b/include/libtorrent/bencode.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/bitfield.hpp b/include/libtorrent/bitfield.hpp index 81dd1ff12..a14010e8d 100644 --- a/include/libtorrent/bitfield.hpp +++ b/include/libtorrent/bitfield.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/block_cache.hpp b/include/libtorrent/block_cache.hpp index c2cf7c922..45fce7a5c 100644 --- a/include/libtorrent/block_cache.hpp +++ b/include/libtorrent/block_cache.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2010-2016, Arvid Norberg +Copyright (c) 2010-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/bloom_filter.hpp b/include/libtorrent/bloom_filter.hpp index 582a34280..07af5762e 100644 --- a/include/libtorrent/bloom_filter.hpp +++ b/include/libtorrent/bloom_filter.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2010-2016, Arvid Norberg +Copyright (c) 2010-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/broadcast_socket.hpp b/include/libtorrent/broadcast_socket.hpp index 8fa7983db..eab5310b5 100644 --- a/include/libtorrent/broadcast_socket.hpp +++ b/include/libtorrent/broadcast_socket.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/bt_peer_connection.hpp b/include/libtorrent/bt_peer_connection.hpp index 49707d1e0..9e7666643 100644 --- a/include/libtorrent/bt_peer_connection.hpp +++ b/include/libtorrent/bt_peer_connection.hpp @@ -1,7 +1,7 @@ /* -Copyright (c) 2003-2016, Arvid Norberg -Copyright (c) 2007-2016, Arvid Norberg, Un Shyam +Copyright (c) 2003-2018, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg, Un Shyam All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/buffer.hpp b/include/libtorrent/buffer.hpp index 7013a5754..f49aa1658 100644 --- a/include/libtorrent/buffer.hpp +++ b/include/libtorrent/buffer.hpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/build_config.hpp b/include/libtorrent/build_config.hpp index aade5e247..6857e7ac8 100644 --- a/include/libtorrent/build_config.hpp +++ b/include/libtorrent/build_config.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2010-2016, Arvid Norberg +Copyright (c) 2010-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/chained_buffer.hpp b/include/libtorrent/chained_buffer.hpp index d68cf0de3..0eee206f4 100644 --- a/include/libtorrent/chained_buffer.hpp +++ b/include/libtorrent/chained_buffer.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/choker.hpp b/include/libtorrent/choker.hpp index 880820729..07827fe3a 100644 --- a/include/libtorrent/choker.hpp +++ b/include/libtorrent/choker.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2014-2016, Arvid Norberg +Copyright (c) 2014-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/close_reason.hpp b/include/libtorrent/close_reason.hpp index 0be54e067..1dc1788ff 100644 --- a/include/libtorrent/close_reason.hpp +++ b/include/libtorrent/close_reason.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2015-2016, Arvid Norberg +Copyright (c) 2015-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/config.hpp b/include/libtorrent/config.hpp index cc9f09f61..e27e1b7e7 100644 --- a/include/libtorrent/config.hpp +++ b/include/libtorrent/config.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2005-2016, Arvid Norberg +Copyright (c) 2005-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/copy_ptr.hpp b/include/libtorrent/copy_ptr.hpp index 1149f4b87..08c761514 100644 --- a/include/libtorrent/copy_ptr.hpp +++ b/include/libtorrent/copy_ptr.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2010-2016, Arvid Norberg +Copyright (c) 2010-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/crc32c.hpp b/include/libtorrent/crc32c.hpp index 46741d3f4..6360a2395 100644 --- a/include/libtorrent/crc32c.hpp +++ b/include/libtorrent/crc32c.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2014-2016, Arvid Norberg +Copyright (c) 2014-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/create_torrent.hpp b/include/libtorrent/create_torrent.hpp index 032992cec..7c499ceb6 100644 --- a/include/libtorrent/create_torrent.hpp +++ b/include/libtorrent/create_torrent.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/deadline_timer.hpp b/include/libtorrent/deadline_timer.hpp index 8ba2707f2..a57721627 100644 --- a/include/libtorrent/deadline_timer.hpp +++ b/include/libtorrent/deadline_timer.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/debug.hpp b/include/libtorrent/debug.hpp index 44fd33892..5f245c9a8 100644 --- a/include/libtorrent/debug.hpp +++ b/include/libtorrent/debug.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/disk_buffer_holder.hpp b/include/libtorrent/disk_buffer_holder.hpp index 5130df8e2..b063dfee4 100644 --- a/include/libtorrent/disk_buffer_holder.hpp +++ b/include/libtorrent/disk_buffer_holder.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/disk_buffer_pool.hpp b/include/libtorrent/disk_buffer_pool.hpp index 6748d8e03..4c012ac32 100644 --- a/include/libtorrent/disk_buffer_pool.hpp +++ b/include/libtorrent/disk_buffer_pool.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/disk_interface.hpp b/include/libtorrent/disk_interface.hpp index a28c75a5d..6da68042f 100644 --- a/include/libtorrent/disk_interface.hpp +++ b/include/libtorrent/disk_interface.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/disk_io_job.hpp b/include/libtorrent/disk_io_job.hpp index 8baa89301..55683751b 100644 --- a/include/libtorrent/disk_io_job.hpp +++ b/include/libtorrent/disk_io_job.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2010-2016, Arvid Norberg +Copyright (c) 2010-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/disk_io_thread.hpp b/include/libtorrent/disk_io_thread.hpp index 6cbfd0ccc..4000924d2 100644 --- a/include/libtorrent/disk_io_thread.hpp +++ b/include/libtorrent/disk_io_thread.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg, Steven Siloti +Copyright (c) 2007-2018, Arvid Norberg, Steven Siloti All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/disk_job_pool.hpp b/include/libtorrent/disk_job_pool.hpp index 3b6915cc2..94f03823b 100644 --- a/include/libtorrent/disk_job_pool.hpp +++ b/include/libtorrent/disk_job_pool.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2010-2016, Arvid Norberg +Copyright (c) 2010-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/disk_observer.hpp b/include/libtorrent/disk_observer.hpp index 6478f01f2..8e5cca8d0 100644 --- a/include/libtorrent/disk_observer.hpp +++ b/include/libtorrent/disk_observer.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/entry.hpp b/include/libtorrent/entry.hpp index 4e655d13d..de09d9fbc 100644 --- a/include/libtorrent/entry.hpp +++ b/include/libtorrent/entry.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/enum_net.hpp b/include/libtorrent/enum_net.hpp index 866d255e1..914b3cc72 100644 --- a/include/libtorrent/enum_net.hpp +++ b/include/libtorrent/enum_net.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/error.hpp b/include/libtorrent/error.hpp index 2f3dfccb9..a330dd789 100644 --- a/include/libtorrent/error.hpp +++ b/include/libtorrent/error.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/error_code.hpp b/include/libtorrent/error_code.hpp index fa1ac1721..e2436c1cf 100644 --- a/include/libtorrent/error_code.hpp +++ b/include/libtorrent/error_code.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/export.hpp b/include/libtorrent/export.hpp index 503afe27a..478e684cc 100644 --- a/include/libtorrent/export.hpp +++ b/include/libtorrent/export.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2005-2016, Arvid Norberg +Copyright (c) 2005-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/extensions.hpp b/include/libtorrent/extensions.hpp index 26accca57..4ac2f6ad9 100644 --- a/include/libtorrent/extensions.hpp +++ b/include/libtorrent/extensions.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/extensions/lt_trackers.hpp b/include/libtorrent/extensions/lt_trackers.hpp index b97973e27..fcb909b5f 100644 --- a/include/libtorrent/extensions/lt_trackers.hpp +++ b/include/libtorrent/extensions/lt_trackers.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/extensions/metadata_transfer.hpp b/include/libtorrent/extensions/metadata_transfer.hpp index 248c677b3..f5523923c 100644 --- a/include/libtorrent/extensions/metadata_transfer.hpp +++ b/include/libtorrent/extensions/metadata_transfer.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/extensions/smart_ban.hpp b/include/libtorrent/extensions/smart_ban.hpp index 73147c8a9..00d393e21 100644 --- a/include/libtorrent/extensions/smart_ban.hpp +++ b/include/libtorrent/extensions/smart_ban.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/extensions/ut_metadata.hpp b/include/libtorrent/extensions/ut_metadata.hpp index 8c03d8967..c50808261 100644 --- a/include/libtorrent/extensions/ut_metadata.hpp +++ b/include/libtorrent/extensions/ut_metadata.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/file.hpp b/include/libtorrent/file.hpp index ff48618e8..e597ce1c6 100644 --- a/include/libtorrent/file.hpp +++ b/include/libtorrent/file.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/file_pool.hpp b/include/libtorrent/file_pool.hpp index cc9bc1a2b..b0a1004de 100644 --- a/include/libtorrent/file_pool.hpp +++ b/include/libtorrent/file_pool.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/file_storage.hpp b/include/libtorrent/file_storage.hpp index d3572303e..4ee8cd5d8 100644 --- a/include/libtorrent/file_storage.hpp +++ b/include/libtorrent/file_storage.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/fingerprint.hpp b/include/libtorrent/fingerprint.hpp index 371c7fb3a..0f9fff4c4 100644 --- a/include/libtorrent/fingerprint.hpp +++ b/include/libtorrent/fingerprint.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/fwd.hpp b/include/libtorrent/fwd.hpp index df53d28bd..03cd825f5 100644 --- a/include/libtorrent/fwd.hpp +++ b/include/libtorrent/fwd.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2017, Arvid Norberg +Copyright (c) 2017-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/gzip.hpp b/include/libtorrent/gzip.hpp index 54f2679fc..1cb4ed807 100644 --- a/include/libtorrent/gzip.hpp +++ b/include/libtorrent/gzip.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/hasher.hpp b/include/libtorrent/hasher.hpp index 2e6a6a5eb..9742d08cc 100644 --- a/include/libtorrent/hasher.hpp +++ b/include/libtorrent/hasher.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/heterogeneous_queue.hpp b/include/libtorrent/heterogeneous_queue.hpp index bed8c2bee..aa7509cd2 100644 --- a/include/libtorrent/heterogeneous_queue.hpp +++ b/include/libtorrent/heterogeneous_queue.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2015-2016, Arvid Norberg +Copyright (c) 2015-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/hex.hpp b/include/libtorrent/hex.hpp index e7dce8979..36c28f070 100644 --- a/include/libtorrent/hex.hpp +++ b/include/libtorrent/hex.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/http_connection.hpp b/include/libtorrent/http_connection.hpp index e9618e02f..d779fd958 100644 --- a/include/libtorrent/http_connection.hpp +++ b/include/libtorrent/http_connection.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/http_parser.hpp b/include/libtorrent/http_parser.hpp index 2a0fe2b42..6e63f7361 100644 --- a/include/libtorrent/http_parser.hpp +++ b/include/libtorrent/http_parser.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/http_seed_connection.hpp b/include/libtorrent/http_seed_connection.hpp index 92cca8e8c..3bb065d87 100644 --- a/include/libtorrent/http_seed_connection.hpp +++ b/include/libtorrent/http_seed_connection.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/http_stream.hpp b/include/libtorrent/http_stream.hpp index efc30feba..c1b98d277 100644 --- a/include/libtorrent/http_stream.hpp +++ b/include/libtorrent/http_stream.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/http_tracker_connection.hpp b/include/libtorrent/http_tracker_connection.hpp index 28de15d7e..1a50fe85e 100644 --- a/include/libtorrent/http_tracker_connection.hpp +++ b/include/libtorrent/http_tracker_connection.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/i2p_stream.hpp b/include/libtorrent/i2p_stream.hpp index 9e74c2f64..bc8d94d0b 100644 --- a/include/libtorrent/i2p_stream.hpp +++ b/include/libtorrent/i2p_stream.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/identify_client.hpp b/include/libtorrent/identify_client.hpp index d038f97ab..e4c49d727 100644 --- a/include/libtorrent/identify_client.hpp +++ b/include/libtorrent/identify_client.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/instantiate_connection.hpp b/include/libtorrent/instantiate_connection.hpp index 3998344b3..81f14fc7f 100644 --- a/include/libtorrent/instantiate_connection.hpp +++ b/include/libtorrent/instantiate_connection.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/io.hpp b/include/libtorrent/io.hpp index 83f9dc31f..c635a4042 100644 --- a/include/libtorrent/io.hpp +++ b/include/libtorrent/io.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/io_service.hpp b/include/libtorrent/io_service.hpp index 4fc3931cd..9e3006098 100644 --- a/include/libtorrent/io_service.hpp +++ b/include/libtorrent/io_service.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/io_service_fwd.hpp b/include/libtorrent/io_service_fwd.hpp index 398c91216..e1580efa4 100644 --- a/include/libtorrent/io_service_fwd.hpp +++ b/include/libtorrent/io_service_fwd.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/ip_filter.hpp b/include/libtorrent/ip_filter.hpp index dac1cab6f..4e47b39a1 100644 --- a/include/libtorrent/ip_filter.hpp +++ b/include/libtorrent/ip_filter.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2005-2016, Arvid Norberg +Copyright (c) 2005-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/ip_voter.hpp b/include/libtorrent/ip_voter.hpp index c60cd2ac1..500dddd04 100644 --- a/include/libtorrent/ip_voter.hpp +++ b/include/libtorrent/ip_voter.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2013-2016, Arvid Norberg +Copyright (c) 2013-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/kademlia/dht_observer.hpp b/include/libtorrent/kademlia/dht_observer.hpp index ba9412791..aed9e1e06 100644 --- a/include/libtorrent/kademlia/dht_observer.hpp +++ b/include/libtorrent/kademlia/dht_observer.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/kademlia/dht_storage.hpp b/include/libtorrent/kademlia/dht_storage.hpp index 7e57522d2..cdf91ed5a 100644 --- a/include/libtorrent/kademlia/dht_storage.hpp +++ b/include/libtorrent/kademlia/dht_storage.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg, Alden Torres +Copyright (c) 2012-2018, Arvid Norberg, Alden Torres All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/kademlia/dht_tracker.hpp b/include/libtorrent/kademlia/dht_tracker.hpp index 7474b6204..7d9336805 100644 --- a/include/libtorrent/kademlia/dht_tracker.hpp +++ b/include/libtorrent/kademlia/dht_tracker.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/kademlia/dos_blocker.hpp b/include/libtorrent/kademlia/dos_blocker.hpp index 830950202..1531fef4f 100644 --- a/include/libtorrent/kademlia/dos_blocker.hpp +++ b/include/libtorrent/kademlia/dos_blocker.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/kademlia/find_data.hpp b/include/libtorrent/kademlia/find_data.hpp index 9fea0f1dc..f12051aba 100644 --- a/include/libtorrent/kademlia/find_data.hpp +++ b/include/libtorrent/kademlia/find_data.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg & Daniel Wallin +Copyright (c) 2006-2018, Arvid Norberg & Daniel Wallin All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/kademlia/get_peers.hpp b/include/libtorrent/kademlia/get_peers.hpp index e71265c64..ab1e09d33 100644 --- a/include/libtorrent/kademlia/get_peers.hpp +++ b/include/libtorrent/kademlia/get_peers.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg & Daniel Wallin +Copyright (c) 2006-2018, Arvid Norberg & Daniel Wallin All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/kademlia/msg.hpp b/include/libtorrent/kademlia/msg.hpp index caa015cac..f1e155c21 100644 --- a/include/libtorrent/kademlia/msg.hpp +++ b/include/libtorrent/kademlia/msg.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/kademlia/node.hpp b/include/libtorrent/kademlia/node.hpp index 831d093aa..2aec79afc 100644 --- a/include/libtorrent/kademlia/node.hpp +++ b/include/libtorrent/kademlia/node.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/kademlia/node_entry.hpp b/include/libtorrent/kademlia/node_entry.hpp index 41b7acf07..020dfa714 100644 --- a/include/libtorrent/kademlia/node_entry.hpp +++ b/include/libtorrent/kademlia/node_entry.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/kademlia/node_id.hpp b/include/libtorrent/kademlia/node_id.hpp index c01e24378..8a70a0b60 100644 --- a/include/libtorrent/kademlia/node_id.hpp +++ b/include/libtorrent/kademlia/node_id.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/kademlia/observer.hpp b/include/libtorrent/kademlia/observer.hpp index 59089da76..4051ddace 100644 --- a/include/libtorrent/kademlia/observer.hpp +++ b/include/libtorrent/kademlia/observer.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/kademlia/put_data.hpp b/include/libtorrent/kademlia/put_data.hpp index 1c4ece733..0e66be701 100644 --- a/include/libtorrent/kademlia/put_data.hpp +++ b/include/libtorrent/kademlia/put_data.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg, Thomas Yuan +Copyright (c) 2006-2018, Arvid Norberg, Thomas Yuan All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/kademlia/refresh.hpp b/include/libtorrent/kademlia/refresh.hpp index e6b58bdac..d9311caa5 100644 --- a/include/libtorrent/kademlia/refresh.hpp +++ b/include/libtorrent/kademlia/refresh.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg & Daniel Wallin +Copyright (c) 2006-2018, Arvid Norberg & Daniel Wallin All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/kademlia/routing_table.hpp b/include/libtorrent/kademlia/routing_table.hpp index 03a6b962c..cabb397da 100644 --- a/include/libtorrent/kademlia/routing_table.hpp +++ b/include/libtorrent/kademlia/routing_table.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/kademlia/rpc_manager.hpp b/include/libtorrent/kademlia/rpc_manager.hpp index a1ae527ec..ca21eaedc 100644 --- a/include/libtorrent/kademlia/rpc_manager.hpp +++ b/include/libtorrent/kademlia/rpc_manager.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/kademlia/traversal_algorithm.hpp b/include/libtorrent/kademlia/traversal_algorithm.hpp index a541083e0..84620237c 100644 --- a/include/libtorrent/kademlia/traversal_algorithm.hpp +++ b/include/libtorrent/kademlia/traversal_algorithm.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg & Daniel Wallin +Copyright (c) 2006-2018, Arvid Norberg & Daniel Wallin All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/lazy_entry.hpp b/include/libtorrent/lazy_entry.hpp index f009a5f63..303d98511 100644 --- a/include/libtorrent/lazy_entry.hpp +++ b/include/libtorrent/lazy_entry.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/link.hpp b/include/libtorrent/link.hpp index 3f9eda432..c99d08fb5 100644 --- a/include/libtorrent/link.hpp +++ b/include/libtorrent/link.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2011-2016, Arvid Norberg +Copyright (c) 2011-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/linked_list.hpp b/include/libtorrent/linked_list.hpp index 10f939021..5e158ce7c 100644 --- a/include/libtorrent/linked_list.hpp +++ b/include/libtorrent/linked_list.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/lsd.hpp b/include/libtorrent/lsd.hpp index e1e9738b7..c993e641d 100644 --- a/include/libtorrent/lsd.hpp +++ b/include/libtorrent/lsd.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/magnet_uri.hpp b/include/libtorrent/magnet_uri.hpp index 444751735..019d8dee8 100644 --- a/include/libtorrent/magnet_uri.hpp +++ b/include/libtorrent/magnet_uri.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/max.hpp b/include/libtorrent/max.hpp index 5ac1ab136..d323af1e9 100644 --- a/include/libtorrent/max.hpp +++ b/include/libtorrent/max.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/natpmp.hpp b/include/libtorrent/natpmp.hpp index 0fa0d5949..4e3a100dd 100644 --- a/include/libtorrent/natpmp.hpp +++ b/include/libtorrent/natpmp.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/network_thread_pool.hpp b/include/libtorrent/network_thread_pool.hpp index 23af939d1..f3d750cf1 100644 --- a/include/libtorrent/network_thread_pool.hpp +++ b/include/libtorrent/network_thread_pool.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2011-2016, Arvid Norberg +Copyright (c) 2011-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/operations.hpp b/include/libtorrent/operations.hpp index 524b6648e..198155462 100644 --- a/include/libtorrent/operations.hpp +++ b/include/libtorrent/operations.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2015-2016, Arvid Norberg +Copyright (c) 2015-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/packet_buffer.hpp b/include/libtorrent/packet_buffer.hpp index e713a71b9..4d9419c05 100644 --- a/include/libtorrent/packet_buffer.hpp +++ b/include/libtorrent/packet_buffer.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2010-2016, Arvid Norberg, Daniel Wallin. +Copyright (c) 2010-2018, Arvid Norberg, Daniel Wallin. All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/parse_url.hpp b/include/libtorrent/parse_url.hpp index 902de8464..3eeec76eb 100644 --- a/include/libtorrent/parse_url.hpp +++ b/include/libtorrent/parse_url.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/part_file.hpp b/include/libtorrent/part_file.hpp index 87c8e2297..f32bc5756 100644 --- a/include/libtorrent/part_file.hpp +++ b/include/libtorrent/part_file.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/pe_crypto.hpp b/include/libtorrent/pe_crypto.hpp index 5cf7e4ad1..300892162 100644 --- a/include/libtorrent/pe_crypto.hpp +++ b/include/libtorrent/pe_crypto.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Un Shyam & Arvid Norberg +Copyright (c) 2007-2018, Un Shyam & Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/peer.hpp b/include/libtorrent/peer.hpp index defdc3f52..89600b2f5 100644 --- a/include/libtorrent/peer.hpp +++ b/include/libtorrent/peer.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/peer_class.hpp b/include/libtorrent/peer_class.hpp index b2b8ed183..9e7bb8647 100644 --- a/include/libtorrent/peer_class.hpp +++ b/include/libtorrent/peer_class.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2011-2016, Arvid Norberg +Copyright (c) 2011-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/peer_class_set.hpp b/include/libtorrent/peer_class_set.hpp index 798323e06..88528cb43 100644 --- a/include/libtorrent/peer_class_set.hpp +++ b/include/libtorrent/peer_class_set.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2011-2016, Arvid Norberg +Copyright (c) 2011-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/peer_class_type_filter.hpp b/include/libtorrent/peer_class_type_filter.hpp index ed213e03a..3d68cf74e 100644 --- a/include/libtorrent/peer_class_type_filter.hpp +++ b/include/libtorrent/peer_class_type_filter.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/peer_connection.hpp b/include/libtorrent/peer_connection.hpp index 771bcd961..d2997c428 100644 --- a/include/libtorrent/peer_connection.hpp +++ b/include/libtorrent/peer_connection.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/peer_connection_handle.hpp b/include/libtorrent/peer_connection_handle.hpp index a2b8d5c1a..6c790dbcc 100644 --- a/include/libtorrent/peer_connection_handle.hpp +++ b/include/libtorrent/peer_connection_handle.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2015-2016, Arvid Norberg, Steven Siloti +Copyright (c) 2015-2018, Arvid Norberg, Steven Siloti All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/peer_connection_interface.hpp b/include/libtorrent/peer_connection_interface.hpp index da8005300..46222ce47 100644 --- a/include/libtorrent/peer_connection_interface.hpp +++ b/include/libtorrent/peer_connection_interface.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2013-2016, Arvid Norberg +Copyright (c) 2013-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/peer_id.hpp b/include/libtorrent/peer_id.hpp index 0614b9fca..e94f465ef 100644 --- a/include/libtorrent/peer_id.hpp +++ b/include/libtorrent/peer_id.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/peer_info.hpp b/include/libtorrent/peer_info.hpp index 68d7b9043..fa48571b9 100644 --- a/include/libtorrent/peer_info.hpp +++ b/include/libtorrent/peer_info.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/peer_list.hpp b/include/libtorrent/peer_list.hpp index 2892d1b4c..fc706b469 100644 --- a/include/libtorrent/peer_list.hpp +++ b/include/libtorrent/peer_list.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/peer_request.hpp b/include/libtorrent/peer_request.hpp index 64e49ca71..88182b4fe 100644 --- a/include/libtorrent/peer_request.hpp +++ b/include/libtorrent/peer_request.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/performance_counters.hpp b/include/libtorrent/performance_counters.hpp index 6daf43bcf..83f7cac6b 100644 --- a/include/libtorrent/performance_counters.hpp +++ b/include/libtorrent/performance_counters.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2013-2016, Arvid Norberg +Copyright (c) 2013-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/piece_block_progress.hpp b/include/libtorrent/piece_block_progress.hpp index 80a0112b3..4ab867084 100644 --- a/include/libtorrent/piece_block_progress.hpp +++ b/include/libtorrent/piece_block_progress.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/piece_picker.hpp b/include/libtorrent/piece_picker.hpp index 562e833aa..502443b67 100644 --- a/include/libtorrent/piece_picker.hpp +++ b/include/libtorrent/piece_picker.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/proxy_base.hpp b/include/libtorrent/proxy_base.hpp index 7e8ab3293..a904d4a88 100644 --- a/include/libtorrent/proxy_base.hpp +++ b/include/libtorrent/proxy_base.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/random.hpp b/include/libtorrent/random.hpp index 884acc35a..f39b9ebdb 100644 --- a/include/libtorrent/random.hpp +++ b/include/libtorrent/random.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2011-2016, Arvid Norberg +Copyright (c) 2011-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/receive_buffer.hpp b/include/libtorrent/receive_buffer.hpp index db377ae9d..015d265bb 100644 --- a/include/libtorrent/receive_buffer.hpp +++ b/include/libtorrent/receive_buffer.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2014-2016, Arvid Norberg, Steven Siloti +Copyright (c) 2014-2018, Arvid Norberg, Steven Siloti All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/request_blocks.hpp b/include/libtorrent/request_blocks.hpp index a5070d8d2..6223d4e2d 100644 --- a/include/libtorrent/request_blocks.hpp +++ b/include/libtorrent/request_blocks.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/resolve_links.hpp b/include/libtorrent/resolve_links.hpp index 2449a396d..ad36d369d 100644 --- a/include/libtorrent/resolve_links.hpp +++ b/include/libtorrent/resolve_links.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2014-2016, Arvid Norberg +Copyright (c) 2014-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/resolver.hpp b/include/libtorrent/resolver.hpp index 152f4309a..f713da9aa 100644 --- a/include/libtorrent/resolver.hpp +++ b/include/libtorrent/resolver.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2013-2016, Arvid Norberg +Copyright (c) 2013-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/resolver_interface.hpp b/include/libtorrent/resolver_interface.hpp index 95fedde3b..73029f632 100644 --- a/include/libtorrent/resolver_interface.hpp +++ b/include/libtorrent/resolver_interface.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2013-2016, Arvid Norberg +Copyright (c) 2013-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/rss.hpp b/include/libtorrent/rss.hpp index 78b7b33ab..2853e9a2e 100644 --- a/include/libtorrent/rss.hpp +++ b/include/libtorrent/rss.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2010-2016, Arvid Norberg +Copyright (c) 2010-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/session.hpp b/include/libtorrent/session.hpp index dd9596fd0..9f11df8db 100644 --- a/include/libtorrent/session.hpp +++ b/include/libtorrent/session.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/session_handle.hpp b/include/libtorrent/session_handle.hpp index 4a2a10e0e..2155206fa 100644 --- a/include/libtorrent/session_handle.hpp +++ b/include/libtorrent/session_handle.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/session_settings.hpp b/include/libtorrent/session_settings.hpp index 031e526db..6ac065cf2 100644 --- a/include/libtorrent/session_settings.hpp +++ b/include/libtorrent/session_settings.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/session_stats.hpp b/include/libtorrent/session_stats.hpp index 43168f6a9..a655a7117 100644 --- a/include/libtorrent/session_stats.hpp +++ b/include/libtorrent/session_stats.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/session_status.hpp b/include/libtorrent/session_status.hpp index abf1b9326..3b9da82dd 100644 --- a/include/libtorrent/session_status.hpp +++ b/include/libtorrent/session_status.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/settings_pack.hpp b/include/libtorrent/settings_pack.hpp index df59bad47..b33c8925d 100644 --- a/include/libtorrent/settings_pack.hpp +++ b/include/libtorrent/settings_pack.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/sha1_hash.hpp b/include/libtorrent/sha1_hash.hpp index 5d18b320f..ca8956920 100644 --- a/include/libtorrent/sha1_hash.hpp +++ b/include/libtorrent/sha1_hash.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/sliding_average.hpp b/include/libtorrent/sliding_average.hpp index e87efee0e..28411377b 100644 --- a/include/libtorrent/sliding_average.hpp +++ b/include/libtorrent/sliding_average.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2010-2016, Arvid Norberg +Copyright (c) 2010-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/socket.hpp b/include/libtorrent/socket.hpp index 7df7af763..8a1692540 100644 --- a/include/libtorrent/socket.hpp +++ b/include/libtorrent/socket.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/socket_io.hpp b/include/libtorrent/socket_io.hpp index 9e6646866..bc9457ea6 100644 --- a/include/libtorrent/socket_io.hpp +++ b/include/libtorrent/socket_io.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/socket_type.hpp b/include/libtorrent/socket_type.hpp index 884a86e68..578b4534a 100644 --- a/include/libtorrent/socket_type.hpp +++ b/include/libtorrent/socket_type.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/socket_type_fwd.hpp b/include/libtorrent/socket_type_fwd.hpp index a2d16ad79..397b371ff 100644 --- a/include/libtorrent/socket_type_fwd.hpp +++ b/include/libtorrent/socket_type_fwd.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/socks5_stream.hpp b/include/libtorrent/socks5_stream.hpp index e3979b350..2c7aad41b 100644 --- a/include/libtorrent/socks5_stream.hpp +++ b/include/libtorrent/socks5_stream.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/ssl_stream.hpp b/include/libtorrent/ssl_stream.hpp index a18416c72..a5f80e83f 100644 --- a/include/libtorrent/ssl_stream.hpp +++ b/include/libtorrent/ssl_stream.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/stack_allocator.hpp b/include/libtorrent/stack_allocator.hpp index 2fdd4c4f3..cd39aaf3d 100644 --- a/include/libtorrent/stack_allocator.hpp +++ b/include/libtorrent/stack_allocator.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2015-2016, Arvid Norberg +Copyright (c) 2015-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/stat.hpp b/include/libtorrent/stat.hpp index e844c60dc..c0de49512 100644 --- a/include/libtorrent/stat.hpp +++ b/include/libtorrent/stat.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/stat_cache.hpp b/include/libtorrent/stat_cache.hpp index e260e4dd5..47b204161 100644 --- a/include/libtorrent/stat_cache.hpp +++ b/include/libtorrent/stat_cache.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg, Daniel Wallin +Copyright (c) 2012-2018, Arvid Norberg, Daniel Wallin All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/storage.hpp b/include/libtorrent/storage.hpp index 962fb74d3..a8f12846e 100644 --- a/include/libtorrent/storage.hpp +++ b/include/libtorrent/storage.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/storage_defs.hpp b/include/libtorrent/storage_defs.hpp index ed870c7f4..d880b9be5 100644 --- a/include/libtorrent/storage_defs.hpp +++ b/include/libtorrent/storage_defs.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/string_util.hpp b/include/libtorrent/string_util.hpp index 6babe8147..9b3f7b2d5 100644 --- a/include/libtorrent/string_util.hpp +++ b/include/libtorrent/string_util.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/tailqueue.hpp b/include/libtorrent/tailqueue.hpp index 94d1f677d..156f35564 100644 --- a/include/libtorrent/tailqueue.hpp +++ b/include/libtorrent/tailqueue.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2011-2016, Arvid Norberg +Copyright (c) 2011-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/thread.hpp b/include/libtorrent/thread.hpp index 4ef92bb8f..abdef22ca 100644 --- a/include/libtorrent/thread.hpp +++ b/include/libtorrent/thread.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/thread_pool.hpp b/include/libtorrent/thread_pool.hpp index a66a78207..7b0f4be72 100644 --- a/include/libtorrent/thread_pool.hpp +++ b/include/libtorrent/thread_pool.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2011-2016, Arvid Norberg +Copyright (c) 2011-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/time.hpp b/include/libtorrent/time.hpp index a63cefd34..39c8b3f93 100644 --- a/include/libtorrent/time.hpp +++ b/include/libtorrent/time.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/timestamp_history.hpp b/include/libtorrent/timestamp_history.hpp index d0961a067..0fe31ef52 100644 --- a/include/libtorrent/timestamp_history.hpp +++ b/include/libtorrent/timestamp_history.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/torrent.hpp b/include/libtorrent/torrent.hpp index 4853ec740..f165b10be 100644 --- a/include/libtorrent/torrent.hpp +++ b/include/libtorrent/torrent.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/torrent_handle.hpp b/include/libtorrent/torrent_handle.hpp index d66cd6397..00b322150 100644 --- a/include/libtorrent/torrent_handle.hpp +++ b/include/libtorrent/torrent_handle.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/torrent_info.hpp b/include/libtorrent/torrent_info.hpp index 0d8c3cae4..62d7fa07d 100644 --- a/include/libtorrent/torrent_info.hpp +++ b/include/libtorrent/torrent_info.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/torrent_peer.hpp b/include/libtorrent/torrent_peer.hpp index 901e3608d..9192c6d12 100644 --- a/include/libtorrent/torrent_peer.hpp +++ b/include/libtorrent/torrent_peer.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/torrent_peer_allocator.hpp b/include/libtorrent/torrent_peer_allocator.hpp index 697e10ea4..5aab42ef1 100644 --- a/include/libtorrent/torrent_peer_allocator.hpp +++ b/include/libtorrent/torrent_peer_allocator.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/torrent_status.hpp b/include/libtorrent/torrent_status.hpp index 5eec35554..0c7ae5eac 100644 --- a/include/libtorrent/torrent_status.hpp +++ b/include/libtorrent/torrent_status.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2015-2016, Arvid Norberg +Copyright (c) 2015-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/tracker_manager.hpp b/include/libtorrent/tracker_manager.hpp index 27060018f..9d1414eeb 100644 --- a/include/libtorrent/tracker_manager.hpp +++ b/include/libtorrent/tracker_manager.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/udp_socket.hpp b/include/libtorrent/udp_socket.hpp index edf9bea3f..aac2c3f53 100644 --- a/include/libtorrent/udp_socket.hpp +++ b/include/libtorrent/udp_socket.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/udp_tracker_connection.hpp b/include/libtorrent/udp_tracker_connection.hpp index fe41b886e..aef693db4 100644 --- a/include/libtorrent/udp_tracker_connection.hpp +++ b/include/libtorrent/udp_tracker_connection.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/uncork_interface.hpp b/include/libtorrent/uncork_interface.hpp index 8772d07f6..7c588a771 100644 --- a/include/libtorrent/uncork_interface.hpp +++ b/include/libtorrent/uncork_interface.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/union_endpoint.hpp b/include/libtorrent/union_endpoint.hpp index 457c05839..09039110b 100644 --- a/include/libtorrent/union_endpoint.hpp +++ b/include/libtorrent/union_endpoint.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2010-2016, Arvid Norberg +Copyright (c) 2010-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/upnp.hpp b/include/libtorrent/upnp.hpp index 516ac1d61..b4eae7f0c 100644 --- a/include/libtorrent/upnp.hpp +++ b/include/libtorrent/upnp.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/utf8.hpp b/include/libtorrent/utf8.hpp index 7e5f1793d..85c8dcfa8 100644 --- a/include/libtorrent/utf8.hpp +++ b/include/libtorrent/utf8.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/utp_socket_manager.hpp b/include/libtorrent/utp_socket_manager.hpp index ea7298072..487175fcb 100644 --- a/include/libtorrent/utp_socket_manager.hpp +++ b/include/libtorrent/utp_socket_manager.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/utp_stream.hpp b/include/libtorrent/utp_stream.hpp index 896c0365e..c71ed25fe 100644 --- a/include/libtorrent/utp_stream.hpp +++ b/include/libtorrent/utp_stream.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/vector_utils.hpp b/include/libtorrent/vector_utils.hpp index 42892e766..3c26a7ed3 100644 --- a/include/libtorrent/vector_utils.hpp +++ b/include/libtorrent/vector_utils.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/version.hpp b/include/libtorrent/version.hpp index 6e0268ba7..f08fe542b 100644 --- a/include/libtorrent/version.hpp +++ b/include/libtorrent/version.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/web_connection_base.hpp b/include/libtorrent/web_connection_base.hpp index c102294a3..2d30a3ff8 100644 --- a/include/libtorrent/web_connection_base.hpp +++ b/include/libtorrent/web_connection_base.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/web_peer_connection.hpp b/include/libtorrent/web_peer_connection.hpp index 6168debe1..d9c20e81d 100644 --- a/include/libtorrent/web_peer_connection.hpp +++ b/include/libtorrent/web_peer_connection.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/include/libtorrent/xml_parse.hpp b/include/libtorrent/xml_parse.hpp index c2024ad15..e2f0b4090 100644 --- a/include/libtorrent/xml_parse.hpp +++ b/include/libtorrent/xml_parse.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/alert.cpp b/src/alert.cpp index e7b7a2521..9375c5e3a 100644 --- a/src/alert.cpp +++ b/src/alert.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg, Daniel Wallin +Copyright (c) 2003-2018, Arvid Norberg, Daniel Wallin All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/alert_manager.cpp b/src/alert_manager.cpp index ddb661986..13d6a8083 100644 --- a/src/alert_manager.cpp +++ b/src/alert_manager.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg, Daniel Wallin +Copyright (c) 2003-2018, Arvid Norberg, Daniel Wallin All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/allocator.cpp b/src/allocator.cpp index a21ac74a9..38460acc8 100644 --- a/src/allocator.cpp +++ b/src/allocator.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/announce_entry.cpp b/src/announce_entry.cpp index 554e05019..ae38a9722 100644 --- a/src/announce_entry.cpp +++ b/src/announce_entry.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2015-2016, Arvid Norberg +Copyright (c) 2015-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/assert.cpp b/src/assert.cpp index 48fa05d44..4bd029498 100644 --- a/src/assert.cpp +++ b/src/assert.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/bandwidth_limit.cpp b/src/bandwidth_limit.cpp index 866138765..abec432dd 100644 --- a/src/bandwidth_limit.cpp +++ b/src/bandwidth_limit.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/bandwidth_manager.cpp b/src/bandwidth_manager.cpp index 25cad66c8..0ea747020 100644 --- a/src/bandwidth_manager.cpp +++ b/src/bandwidth_manager.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/bandwidth_queue_entry.cpp b/src/bandwidth_queue_entry.cpp index 5086bddfb..e82910316 100644 --- a/src/bandwidth_queue_entry.cpp +++ b/src/bandwidth_queue_entry.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/bdecode.cpp b/src/bdecode.cpp index 072697ee9..1cb58dd19 100644 --- a/src/bdecode.cpp +++ b/src/bdecode.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2015-2016, Arvid Norberg +Copyright (c) 2015-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/bitfield.cpp b/src/bitfield.cpp index dab1d2259..0abdeb6a9 100644 --- a/src/bitfield.cpp +++ b/src/bitfield.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/block_cache.cpp b/src/block_cache.cpp index 1963f1859..26b76e2d9 100644 --- a/src/block_cache.cpp +++ b/src/block_cache.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2010-2016, Arvid Norberg +Copyright (c) 2010-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/bloom_filter.cpp b/src/bloom_filter.cpp index 29a0da1b0..bd610cb39 100644 --- a/src/bloom_filter.cpp +++ b/src/bloom_filter.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2010-2016, Arvid Norberg +Copyright (c) 2010-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/broadcast_socket.cpp b/src/broadcast_socket.cpp index 38a0ce217..de2a09486 100644 --- a/src/broadcast_socket.cpp +++ b/src/broadcast_socket.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/bt_peer_connection.cpp b/src/bt_peer_connection.cpp index 90260be21..57a9ce3b8 100644 --- a/src/bt_peer_connection.cpp +++ b/src/bt_peer_connection.cpp @@ -1,7 +1,7 @@ /* -Copyright (c) 2003-2016, Arvid Norberg -Copyright (c) 2007-2016, Arvid Norberg, Un Shyam +Copyright (c) 2003-2018, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg, Un Shyam All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/chained_buffer.cpp b/src/chained_buffer.cpp index 789cdb243..c024b57c0 100644 --- a/src/chained_buffer.cpp +++ b/src/chained_buffer.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/choker.cpp b/src/choker.cpp index edbc7044d..1ca14db36 100644 --- a/src/choker.cpp +++ b/src/choker.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2014-2016, Arvid Norberg +Copyright (c) 2014-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/close_reason.cpp b/src/close_reason.cpp index 974143010..83d68bec2 100644 --- a/src/close_reason.cpp +++ b/src/close_reason.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2015-2016, Arvid Norberg +Copyright (c) 2015-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/cpuid.cpp b/src/cpuid.cpp index c3869ae01..9921c6af6 100644 --- a/src/cpuid.cpp +++ b/src/cpuid.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2014-2016, Arvid Norberg +Copyright (c) 2014-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/crc32c.cpp b/src/crc32c.cpp index 087f9e3ab..45ffd23b2 100644 --- a/src/crc32c.cpp +++ b/src/crc32c.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2014-2016, Arvid Norberg +Copyright (c) 2014-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/create_torrent.cpp b/src/create_torrent.cpp index 5363eefc7..815b22d35 100644 --- a/src/create_torrent.cpp +++ b/src/create_torrent.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/disk_buffer_holder.cpp b/src/disk_buffer_holder.cpp index 83e784369..f7b368da2 100644 --- a/src/disk_buffer_holder.cpp +++ b/src/disk_buffer_holder.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/disk_buffer_pool.cpp b/src/disk_buffer_pool.cpp index d60127ee2..d3956fd1d 100644 --- a/src/disk_buffer_pool.cpp +++ b/src/disk_buffer_pool.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/disk_io_job.cpp b/src/disk_io_job.cpp index 0b11605a0..9e9d9a6e8 100644 --- a/src/disk_io_job.cpp +++ b/src/disk_io_job.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2011-2016, Arvid Norberg +Copyright (c) 2011-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/disk_io_thread.cpp b/src/disk_io_thread.cpp index 5485f1916..976997bb4 100644 --- a/src/disk_io_thread.cpp +++ b/src/disk_io_thread.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg, Steven Siloti +Copyright (c) 2007-2018, Arvid Norberg, Steven Siloti All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/disk_job_pool.cpp b/src/disk_job_pool.cpp index 2b0d4b193..08df3e269 100644 --- a/src/disk_job_pool.cpp +++ b/src/disk_job_pool.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/entry.cpp b/src/entry.cpp index d47eeb3af..c54bf305b 100644 --- a/src/entry.cpp +++ b/src/entry.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/enum_net.cpp b/src/enum_net.cpp index 6c4858faa..94d9f7f5f 100644 --- a/src/enum_net.cpp +++ b/src/enum_net.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/error_code.cpp b/src/error_code.cpp index a41e4b047..f2e02e927 100644 --- a/src/error_code.cpp +++ b/src/error_code.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/escape_string.cpp b/src/escape_string.cpp index cd1b972d3..1897d079e 100644 --- a/src/escape_string.cpp +++ b/src/escape_string.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/file.cpp b/src/file.cpp index e6f8dc90e..32c711761 100644 --- a/src/file.cpp +++ b/src/file.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/file_pool.cpp b/src/file_pool.cpp index 1a2305ed7..f46f037e3 100644 --- a/src/file_pool.cpp +++ b/src/file_pool.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/file_progress.cpp b/src/file_progress.cpp index 3ba7231bd..b747114d3 100644 --- a/src/file_progress.cpp +++ b/src/file_progress.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2015-2016, Arvid Norberg +Copyright (c) 2015-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/file_storage.cpp b/src/file_storage.cpp index 6f1be1ee1..401c2e43c 100644 --- a/src/file_storage.cpp +++ b/src/file_storage.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/fingerprint.cpp b/src/fingerprint.cpp index 304d56dc6..7312d895d 100644 --- a/src/fingerprint.cpp +++ b/src/fingerprint.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2016, Arvid Norberg +Copyright (c) 2016-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/gzip.cpp b/src/gzip.cpp index b1c99e776..ee97c5509 100644 --- a/src/gzip.cpp +++ b/src/gzip.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/hasher.cpp b/src/hasher.cpp index 17b810dc3..db8d99a64 100644 --- a/src/hasher.cpp +++ b/src/hasher.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/hex.cpp b/src/hex.cpp index eecf3dbf8..f7f959be8 100644 --- a/src/hex.cpp +++ b/src/hex.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/http_connection.cpp b/src/http_connection.cpp index 7efb4131b..475c29937 100644 --- a/src/http_connection.cpp +++ b/src/http_connection.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/http_parser.cpp b/src/http_parser.cpp index 1947d54c2..16ddc4833 100644 --- a/src/http_parser.cpp +++ b/src/http_parser.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/http_seed_connection.cpp b/src/http_seed_connection.cpp index 79c014bca..4e224dd2c 100644 --- a/src/http_seed_connection.cpp +++ b/src/http_seed_connection.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/http_stream.cpp b/src/http_stream.cpp index 9729ffa18..599d60b2b 100644 --- a/src/http_stream.cpp +++ b/src/http_stream.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/http_tracker_connection.cpp b/src/http_tracker_connection.cpp index 331e750a7..e13d6b40f 100644 --- a/src/http_tracker_connection.cpp +++ b/src/http_tracker_connection.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/i2p_stream.cpp b/src/i2p_stream.cpp index e31c155c6..ceb9c388b 100644 --- a/src/i2p_stream.cpp +++ b/src/i2p_stream.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/identify_client.cpp b/src/identify_client.cpp index 6748431ca..7c51d03b9 100644 --- a/src/identify_client.cpp +++ b/src/identify_client.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/instantiate_connection.cpp b/src/instantiate_connection.cpp index 0512b6cf8..842ef9268 100644 --- a/src/instantiate_connection.cpp +++ b/src/instantiate_connection.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/ip_filter.cpp b/src/ip_filter.cpp index fa3f78b28..8e682c442 100644 --- a/src/ip_filter.cpp +++ b/src/ip_filter.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2005-2016, Arvid Norberg +Copyright (c) 2005-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/ip_voter.cpp b/src/ip_voter.cpp index 8d0697f51..cd1435df1 100644 --- a/src/ip_voter.cpp +++ b/src/ip_voter.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2013-2016, Arvid Norberg +Copyright (c) 2013-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/kademlia/dht_storage.cpp b/src/kademlia/dht_storage.cpp index e2b2bafcc..5e7e21b6d 100644 --- a/src/kademlia/dht_storage.cpp +++ b/src/kademlia/dht_storage.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg, Alden Torres +Copyright (c) 2012-2018, Arvid Norberg, Alden Torres All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/kademlia/dht_tracker.cpp b/src/kademlia/dht_tracker.cpp index 1dd36d8a0..1831fbe6f 100644 --- a/src/kademlia/dht_tracker.cpp +++ b/src/kademlia/dht_tracker.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/kademlia/dos_blocker.cpp b/src/kademlia/dos_blocker.cpp index 962962358..c6909fa54 100644 --- a/src/kademlia/dos_blocker.cpp +++ b/src/kademlia/dos_blocker.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/kademlia/find_data.cpp b/src/kademlia/find_data.cpp index 17092ae42..b971ecfd8 100644 --- a/src/kademlia/find_data.cpp +++ b/src/kademlia/find_data.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg & Daniel Wallin +Copyright (c) 2006-2018, Arvid Norberg & Daniel Wallin All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/kademlia/get_peers.cpp b/src/kademlia/get_peers.cpp index 6645f197f..44f5817e8 100644 --- a/src/kademlia/get_peers.cpp +++ b/src/kademlia/get_peers.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg & Daniel Wallin +Copyright (c) 2006-2018, Arvid Norberg & Daniel Wallin All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/kademlia/msg.cpp b/src/kademlia/msg.cpp index 53d1c7b85..f03f483fc 100644 --- a/src/kademlia/msg.cpp +++ b/src/kademlia/msg.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/kademlia/node.cpp b/src/kademlia/node.cpp index 059d7490b..3e49f69ca 100644 --- a/src/kademlia/node.cpp +++ b/src/kademlia/node.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/kademlia/node_entry.cpp b/src/kademlia/node_entry.cpp index 00ac3b01c..e72cd097c 100644 --- a/src/kademlia/node_entry.cpp +++ b/src/kademlia/node_entry.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/kademlia/node_id.cpp b/src/kademlia/node_id.cpp index 8976bfde1..7781f6324 100644 --- a/src/kademlia/node_id.cpp +++ b/src/kademlia/node_id.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/kademlia/put_data.cpp b/src/kademlia/put_data.cpp index 85e321246..b48f772ba 100644 --- a/src/kademlia/put_data.cpp +++ b/src/kademlia/put_data.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg & Daniel Wallin +Copyright (c) 2006-2018, Arvid Norberg & Daniel Wallin All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/kademlia/refresh.cpp b/src/kademlia/refresh.cpp index a41648551..94331ed2c 100644 --- a/src/kademlia/refresh.cpp +++ b/src/kademlia/refresh.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg & Daniel Wallin +Copyright (c) 2006-2018, Arvid Norberg & Daniel Wallin All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/kademlia/routing_table.cpp b/src/kademlia/routing_table.cpp index 794cb2182..a23500b69 100644 --- a/src/kademlia/routing_table.cpp +++ b/src/kademlia/routing_table.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/kademlia/rpc_manager.cpp b/src/kademlia/rpc_manager.cpp index 63aaa4a8d..d3c986aab 100644 --- a/src/kademlia/rpc_manager.cpp +++ b/src/kademlia/rpc_manager.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/kademlia/traversal_algorithm.cpp b/src/kademlia/traversal_algorithm.cpp index 6188966b8..1f3632fac 100644 --- a/src/kademlia/traversal_algorithm.cpp +++ b/src/kademlia/traversal_algorithm.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg & Daniel Wallin +Copyright (c) 2006-2018, Arvid Norberg & Daniel Wallin All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/lazy_bdecode.cpp b/src/lazy_bdecode.cpp index 9438cc2e2..fe1029f60 100644 --- a/src/lazy_bdecode.cpp +++ b/src/lazy_bdecode.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/lsd.cpp b/src/lsd.cpp index ff8acf158..0775b8a26 100644 --- a/src/lsd.cpp +++ b/src/lsd.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/lt_trackers.cpp b/src/lt_trackers.cpp index e019435c3..1ad575c59 100644 --- a/src/lt_trackers.cpp +++ b/src/lt_trackers.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/magnet_uri.cpp b/src/magnet_uri.cpp index 095dc4049..a6f4d1db9 100644 --- a/src/magnet_uri.cpp +++ b/src/magnet_uri.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/merkle.cpp b/src/merkle.cpp index 71771a203..ef0777ecb 100644 --- a/src/merkle.cpp +++ b/src/merkle.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/metadata_transfer.cpp b/src/metadata_transfer.cpp index d67148379..ceb8ef9de 100644 --- a/src/metadata_transfer.cpp +++ b/src/metadata_transfer.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg +Copyright (c) 2006-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/natpmp.cpp b/src/natpmp.cpp index ecf2aff34..ce5172eb0 100644 --- a/src/natpmp.cpp +++ b/src/natpmp.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/packet_buffer.cpp b/src/packet_buffer.cpp index bc073b396..a30562400 100644 --- a/src/packet_buffer.cpp +++ b/src/packet_buffer.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2010-2016, Arvid Norberg +Copyright (c) 2010-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/parse_url.cpp b/src/parse_url.cpp index 81ae6224d..09616c67b 100644 --- a/src/parse_url.cpp +++ b/src/parse_url.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2008-2016, Arvid Norberg +Copyright (c) 2008-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/part_file.cpp b/src/part_file.cpp index b842a2b8f..a4291e509 100644 --- a/src/part_file.cpp +++ b/src/part_file.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/pe_crypto.cpp b/src/pe_crypto.cpp index 018b5b9c7..4d3d461c9 100644 --- a/src/pe_crypto.cpp +++ b/src/pe_crypto.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Un Shyam, Arvid Norberg, Steven Siloti +Copyright (c) 2007-2018, Un Shyam, Arvid Norberg, Steven Siloti All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/peer_class.cpp b/src/peer_class.cpp index ea1979920..d49abec10 100644 --- a/src/peer_class.cpp +++ b/src/peer_class.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2011-2016, Arvid Norberg +Copyright (c) 2011-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/peer_class_set.cpp b/src/peer_class_set.cpp index 1606608ab..de3bf349c 100644 --- a/src/peer_class_set.cpp +++ b/src/peer_class_set.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/peer_connection.cpp b/src/peer_connection.cpp index f11b8deb0..44ae840a1 100644 --- a/src/peer_connection.cpp +++ b/src/peer_connection.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/peer_connection_handle.cpp b/src/peer_connection_handle.cpp index 9137f5f92..5a0dd6b40 100644 --- a/src/peer_connection_handle.cpp +++ b/src/peer_connection_handle.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2015-2016, Arvid Norberg, Steven Siloti +Copyright (c) 2015-2018, Arvid Norberg, Steven Siloti All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/peer_list.cpp b/src/peer_list.cpp index 6e5691b77..86a758d72 100644 --- a/src/peer_list.cpp +++ b/src/peer_list.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/performance_counters.cpp b/src/performance_counters.cpp index cc737d720..480cf3040 100644 --- a/src/performance_counters.cpp +++ b/src/performance_counters.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2013-2016, Arvid Norberg +Copyright (c) 2013-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/piece_picker.cpp b/src/piece_picker.cpp index d88ebf76b..78bfb94dc 100644 --- a/src/piece_picker.cpp +++ b/src/piece_picker.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/platform_util.cpp b/src/platform_util.cpp index 5e22cec9e..543c8eb8b 100644 --- a/src/platform_util.cpp +++ b/src/platform_util.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/proxy_base.cpp b/src/proxy_base.cpp index 36c1580d0..a058548c2 100644 --- a/src/proxy_base.cpp +++ b/src/proxy_base.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/proxy_settings.cpp b/src/proxy_settings.cpp index 807896d3c..7ceac8a81 100644 --- a/src/proxy_settings.cpp +++ b/src/proxy_settings.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/random.cpp b/src/random.cpp index aebadebf0..f5b65d085 100644 --- a/src/random.cpp +++ b/src/random.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2011-2016, Arvid Norberg +Copyright (c) 2011-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/receive_buffer.cpp b/src/receive_buffer.cpp index d5e86a67d..3d48e1d3f 100644 --- a/src/receive_buffer.cpp +++ b/src/receive_buffer.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2014-2016, Arvid Norberg, Steven Siloti +Copyright (c) 2014-2018, Arvid Norberg, Steven Siloti All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/request_blocks.cpp b/src/request_blocks.cpp index 144e64b27..158a76160 100644 --- a/src/request_blocks.cpp +++ b/src/request_blocks.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/resolve_links.cpp b/src/resolve_links.cpp index b0fc40bfb..826c7ad3b 100644 --- a/src/resolve_links.cpp +++ b/src/resolve_links.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2014-2016, Arvid Norberg +Copyright (c) 2014-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/resolver.cpp b/src/resolver.cpp index 4a444ace9..20753c15d 100644 --- a/src/resolver.cpp +++ b/src/resolver.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2013-2016, Arvid Norberg +Copyright (c) 2013-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/rss.cpp b/src/rss.cpp index 8198f1bb3..f83a5a3d9 100644 --- a/src/rss.cpp +++ b/src/rss.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2010-2016, Arvid Norberg +Copyright (c) 2010-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/session.cpp b/src/session.cpp index c9760f8ae..7d8b4d58f 100644 --- a/src/session.cpp +++ b/src/session.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg, Magnus Jonsson +Copyright (c) 2006-2018, Arvid Norberg, Magnus Jonsson All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/session_call.cpp b/src/session_call.cpp index e6bf859a5..0255de7de 100644 --- a/src/session_call.cpp +++ b/src/session_call.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2014-2016, Arvid Norberg, Steven Siloti +Copyright (c) 2014-2018, Arvid Norberg, Steven Siloti All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/session_handle.cpp b/src/session_handle.cpp index 22370fef8..c9f841603 100644 --- a/src/session_handle.cpp +++ b/src/session_handle.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/session_impl.cpp b/src/session_impl.cpp index ee9e49bd0..1a183500b 100644 --- a/src/session_impl.cpp +++ b/src/session_impl.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, Arvid Norberg, Magnus Jonsson +Copyright (c) 2006-2018, Arvid Norberg, Magnus Jonsson All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/session_settings.cpp b/src/session_settings.cpp index 3d35fdbd2..7d02c0f58 100644 --- a/src/session_settings.cpp +++ b/src/session_settings.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2015-2016, Arvid Norberg +Copyright (c) 2015-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/session_stats.cpp b/src/session_stats.cpp index fb3cb37b5..f44080e82 100644 --- a/src/session_stats.cpp +++ b/src/session_stats.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/settings_pack.cpp b/src/settings_pack.cpp index 6d01c878c..16b152cf9 100644 --- a/src/settings_pack.cpp +++ b/src/settings_pack.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/smart_ban.cpp b/src/smart_ban.cpp index 65b15d392..e33604056 100644 --- a/src/smart_ban.cpp +++ b/src/smart_ban.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/socket_io.cpp b/src/socket_io.cpp index bbea47397..1700ee805 100644 --- a/src/socket_io.cpp +++ b/src/socket_io.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/socket_type.cpp b/src/socket_type.cpp index 1a7a41326..cf3826658 100644 --- a/src/socket_type.cpp +++ b/src/socket_type.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/socks5_stream.cpp b/src/socks5_stream.cpp index eaf0a12c7..75d831521 100644 --- a/src/socks5_stream.cpp +++ b/src/socks5_stream.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/stat.cpp b/src/stat.cpp index e96b3b64c..b49dfba10 100644 --- a/src/stat.cpp +++ b/src/stat.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/stat_cache.cpp b/src/stat_cache.cpp index 289cbf97e..a2ee2d70e 100644 --- a/src/stat_cache.cpp +++ b/src/stat_cache.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg, Daniel Wallin +Copyright (c) 2012-2018, Arvid Norberg, Daniel Wallin All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/storage.cpp b/src/storage.cpp index f69c69bad..3641c51ff 100644 --- a/src/storage.cpp +++ b/src/storage.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg, Daniel Wallin +Copyright (c) 2003-2018, Arvid Norberg, Daniel Wallin All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/string_util.cpp b/src/string_util.cpp index 2458ec4d9..d2a238890 100644 --- a/src/string_util.cpp +++ b/src/string_util.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/thread.cpp b/src/thread.cpp index eec8c10b2..49a8c6ab4 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2010-2016, Arvid Norberg +Copyright (c) 2010-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/time.cpp b/src/time.cpp index 8975cb0ea..3970398ce 100644 --- a/src/time.cpp +++ b/src/time.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/timestamp_history.cpp b/src/timestamp_history.cpp index 670049b85..58e9d3cdb 100644 --- a/src/timestamp_history.cpp +++ b/src/timestamp_history.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/torrent.cpp b/src/torrent.cpp index 765fa779c..0e5f90633 100644 --- a/src/torrent.cpp +++ b/src/torrent.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/torrent_handle.cpp b/src/torrent_handle.cpp index 04d20a9be..a152f164e 100644 --- a/src/torrent_handle.cpp +++ b/src/torrent_handle.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/torrent_info.cpp b/src/torrent_info.cpp index ed7cb1383..941a25a7b 100644 --- a/src/torrent_info.cpp +++ b/src/torrent_info.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/torrent_peer.cpp b/src/torrent_peer.cpp index 338d2871d..5388ef84a 100644 --- a/src/torrent_peer.cpp +++ b/src/torrent_peer.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/torrent_peer_allocator.cpp b/src/torrent_peer_allocator.cpp index 98a567ead..cdd5ee3c8 100644 --- a/src/torrent_peer_allocator.cpp +++ b/src/torrent_peer_allocator.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/torrent_status.cpp b/src/torrent_status.cpp index c04454b68..8757809d0 100644 --- a/src/torrent_status.cpp +++ b/src/torrent_status.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2015-2016, Arvid Norberg +Copyright (c) 2015-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/tracker_manager.cpp b/src/tracker_manager.cpp index e2916a9bf..604070032 100644 --- a/src/tracker_manager.cpp +++ b/src/tracker_manager.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/udp_socket.cpp b/src/udp_socket.cpp index 551412c65..d4d51476a 100644 --- a/src/udp_socket.cpp +++ b/src/udp_socket.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/udp_tracker_connection.cpp b/src/udp_tracker_connection.cpp index 58875608e..baa807bd8 100644 --- a/src/udp_tracker_connection.cpp +++ b/src/udp_tracker_connection.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/upnp.cpp b/src/upnp.cpp index bc167780a..babca8c57 100644 --- a/src/upnp.cpp +++ b/src/upnp.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/ut_metadata.cpp b/src/ut_metadata.cpp index a5e0d820c..202db74af 100644 --- a/src/ut_metadata.cpp +++ b/src/ut_metadata.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/ut_pex.cpp b/src/ut_pex.cpp index 0fa61dcbe..655e4ef08 100644 --- a/src/ut_pex.cpp +++ b/src/ut_pex.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2006-2016, MassaRoddel, Arvid Norberg +Copyright (c) 2006-2018, MassaRoddel, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/utf8.cpp b/src/utf8.cpp index 703677340..1c809e463 100644 --- a/src/utf8.cpp +++ b/src/utf8.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2012-2016, Arvid Norberg +Copyright (c) 2012-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/utp_socket_manager.cpp b/src/utp_socket_manager.cpp index c7b104493..358b697b0 100644 --- a/src/utp_socket_manager.cpp +++ b/src/utp_socket_manager.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/utp_stream.cpp b/src/utp_stream.cpp index d68edff14..bafd27ec0 100644 --- a/src/utp_stream.cpp +++ b/src/utp_stream.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2009-2016, Arvid Norberg +Copyright (c) 2009-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/version.cpp b/src/version.cpp index dc4722b39..eac099ba0 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2015-2016, Arvid Norberg +Copyright (c) 2015-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/web_connection_base.cpp b/src/web_connection_base.cpp index 63e18744b..5a0bd97a3 100644 --- a/src/web_connection_base.cpp +++ b/src/web_connection_base.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/web_peer_connection.cpp b/src/web_peer_connection.cpp index 51aef9a65..6041cfc5b 100644 --- a/src/web_peer_connection.cpp +++ b/src/web_peer_connection.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2003-2016, Arvid Norberg +Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/xml_parse.cpp b/src/xml_parse.cpp index 866ebd770..a045fec5e 100644 --- a/src/xml_parse.cpp +++ b/src/xml_parse.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2007-2016, Arvid Norberg +Copyright (c) 2007-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without