diff -Nurp libtorrent-0.12.0.old/rak/functional.h libtorrent-0.12.0/rak/functional.h
|
old
|
new
|
|
| 37 | 37 | #ifndef RAK_FUNCTIONAL_H |
| 38 | 38 | #define RAK_FUNCTIONAL_H |
| 39 | 39 | |
| | 40 | #include <cstddef> |
| 40 | 41 | #include <functional> |
| 41 | 42 | |
| 42 | 43 | namespace rak { |
diff -Nurp libtorrent-0.12.0.old/src/data/chunk.cc libtorrent-0.12.0/src/data/chunk.cc
|
old
|
new
|
|
| 36 | 36 | |
| 37 | 37 | #include "config.h" |
| 38 | 38 | |
| | 39 | #include <cstring> |
| 39 | 40 | #include <algorithm> |
| 40 | 41 | #include <functional> |
| 41 | 42 | |
diff -Nurp libtorrent-0.12.0.old/src/data/chunk_list.h libtorrent-0.12.0/src/data/chunk_list.h
|
old
|
new
|
|
| 38 | 38 | #define LIBTORRENT_DATA_CHUNK_LIST_H |
| 39 | 39 | |
| 40 | 40 | #include <vector> |
| | 41 | #include <string> |
| 41 | 42 | #include <rak/error_number.h> |
| 42 | 43 | #include <rak/functional.h> |
| 43 | 44 | |
diff -Nurp libtorrent-0.12.0.old/src/net/address_list.cc libtorrent-0.12.0/src/net/address_list.cc
|
old
|
new
|
|
| 36 | 36 | |
| 37 | 37 | #include "config.h" |
| 38 | 38 | |
| | 39 | #include <algorithm> |
| | 40 | |
| 39 | 41 | #include <rak/functional.h> |
| 40 | 42 | |
| 41 | 43 | #include "download/download_info.h" // for SocketAddressCompact |
diff -Nurp libtorrent-0.12.0.old/src/torrent/data/file_list_iterator.h libtorrent-0.12.0/src/torrent/data/file_list_iterator.h
|
old
|
new
|
|
| 37 | 37 | #ifndef LIBTORRENT_FILE_LIST_ITERATOR_H |
| 38 | 38 | #define LIBTORRENT_FILE_LIST_ITERATOR_H |
| 39 | 39 | |
| | 40 | #include <cstdlib> |
| 40 | 41 | #include <torrent/common.h> |
| 41 | 42 | #include <torrent/data/file_list.h> |
| 42 | 43 | |
diff -Nurp libtorrent-0.12.0.old/src/torrent/exceptions.cc libtorrent-0.12.0/src/torrent/exceptions.cc
|
old
|
new
|
|
| 37 | 37 | #include "config.h" |
| 38 | 38 | |
| 39 | 39 | #include <cerrno> |
| | 40 | #include <cstring> |
| 40 | 41 | |
| 41 | 42 | #include "exceptions.h" |
| 42 | 43 | |
diff -Nurp libtorrent-0.12.0.old/src/torrent/tracker_list.h libtorrent-0.12.0/src/torrent/tracker_list.h
|
old
|
new
|
|
| 38 | 38 | #define LIBTORRENT_TRACKER_LIST_H |
| 39 | 39 | |
| 40 | 40 | #include <algorithm> |
| | 41 | #include <string> |
| 41 | 42 | #include <vector> |
| 42 | 43 | #include <torrent/common.h> |
| 43 | 44 | |
diff -Nurp libtorrent-0.12.0.old/src/utils/diffie_hellman.cc libtorrent-0.12.0/src/utils/diffie_hellman.cc
|
old
|
new
|
|
| 36 | 36 | |
| 37 | 37 | #include "config.h" |
| 38 | 38 | |
| | 39 | #include <cstring> |
| 39 | 40 | #include <string> |
| 40 | 41 | |
| 41 | 42 | #ifdef USE_OPENSSL |