Commit Graph

793 Commits

Author SHA1 Message Date
Jeff Becker
32bc886b99 add android support (initial) 2018-08-06 09:39:29 +10:00
Jeff
e0d5b8e138
Merge pull request #10 from despair86/master
code cleanup
2018-08-04 13:22:01 +10:00
despair86
1e9f49d6ef Merge remote-tracking branch 'upstream/master' 2018-08-03 22:07:46 -05:00
despair86
e7a3ead0ff moved to top-level tree 2018-08-03 22:05:38 -05:00
Jeff Becker
224748bcaf Merge remote-tracking branch 'loki/master' 2018-08-04 13:00:42 +10:00
Jeff Becker
86ec4dacc3 dht and testnet fixes 2018-08-04 12:59:32 +10:00
despair86
0ca43a3103 - Included tapv9 client drivers for windows hosts
- added device install/remove shell scripts to distribution package
2018-08-03 19:06:46 -05:00
despair86
9c0b395c67 vs clang format isn't supposed to inject tabs ffs 2018-08-03 19:06:11 -05:00
despair86
c1765d562b minor patch, make sure the iocp fields are valid before attempting to cast the ev_id back to its ptr 2018-08-03 19:05:45 -05:00
Jeff
5a1e1f447c
Merge pull request #8 from despair86/master
This completes the Windows NT Server port of the LokiNetwork components.
2018-08-03 20:03:38 +10:00
despair86
ae956aff5f This completes the Windows NT Server port of the LokiNetwork components.
Also changed the epoll_wait timeout to 10ms in llarp_epoll_loop::run() to match the other platforms.

-despair86
2018-08-03 04:21:53 -05:00
Jeff Becker
f68e3029b0 fix timeouts 2018-08-03 15:32:07 +10:00
Jeff Becker
68a69da0bf fix kqueue run function, have it wait for 10ms so tick works 2018-08-03 13:56:45 +10:00
Jeff
bff59e9d9f
Merge pull request #7 from sachaaaaa/master
silent warnings on windows with WIN32_LEAN_AND_MEAN
2018-08-03 11:36:32 +10:00
sachaaaaa
37aed03df2 use WIN32_LEAN_AND_MEAN project-wise to silent warnings on windows about winsock2.h and windows.h 2018-08-03 11:34:36 +10:00
Jeff Becker
694644ac8b timeout for kevent tick 2018-08-03 11:24:53 +10:00
Jeff Becker
cc59d7944a event loop must call tick every tick including on timeout 2018-08-03 10:41:01 +10:00
Jeff Becker
44663d18a5 fix typo 2018-08-03 10:34:47 +10:00
Jeff Becker
1e4f4fa226 refactor readmes 2018-08-03 10:33:00 +10:00
Jeff Becker
91c8451381 try fixing broken CI build 2018-08-03 10:20:18 +10:00
Jeff Becker
9c212ce03d don't include libc 2018-08-03 09:57:49 +10:00
Jeff Becker
9dc88fb64b another win32 cross compile fix 2018-08-03 09:37:54 +10:00
Jeff Becker
a99fa8f6cf try fixing windows cross compile 2018-08-03 09:36:34 +10:00
Jeff Becker
0d2bce2089 fix up win32 specific parts 2018-08-03 09:30:34 +10:00
Jeff Becker
1b20ba6a6c fix dead code, clean up parts. 2018-08-03 09:03:23 +10:00
Jeff Becker
066c208622 add mutex/lock to singlethread mode threadpool
remove uneeded i2p.rock.signed.txt

update makefile clean target
2018-08-03 07:26:14 +10:00
Jeff Becker
5c03b3c8f9 add comments 2018-08-03 06:50:16 +10:00
despair86
bdc54835c2 initial windows server port. Requires Windows 2000 Server or later.
- updated CMake build script
- builds with Microsoft C++ 19.1x. such builds require Windows 8.1 or later
  unless you have the .NET Server 2003-toolset (v141_xp)
- windows port requires a C++17 compiler since cpp17::filesystem is POSIX-only
- HAVE_CXX17_FILESYSTEM manual toggle in CMake. You must manually specify where
  std::[experimental::]filesystem is defined in LDFLAGS or CMAKE_x_LINKER_FLAGS.
- IPv6 support can be added at any time, and the windows sdk still has that
  inline getaddrinfo(3) if it can't find a suitable IPv6 stack.
- inline code for mingw-w64: there's a few bits and pieces still missing simply because
  mingw-w64 derives its windows sdk from wine and reactos, and then writing all the newer
  stuff into it by hand straight from the MSDN manpages.
- misc. C++11 stuff (nullptr and friends)
- Internal file handling code takes UTF-8 or plain 8-bit text, NTFS is UTF-16, so
  std::filesystem::path::c_str() is wchar_t. That's no good unless you first
  call std::filesystem::path::string().
- implemented getifaddrs(3) and if_nametoindex(3) on top of GetAdapters[Info|Addresses](2).
- updated readme with new info

BONUS: may implement Solaris/illumos IOCP someday...

-despair86
2018-08-01 23:41:02 -05:00
Jeff Becker
7622f6cef1 dht tweaks 2018-08-02 14:34:46 +10:00
Jeff Becker
6bd2e965fc don't store client RC EVER 2018-08-02 14:34:16 +10:00
Jeff Becker
6ffa2eed1c fix up dht 2018-08-02 11:41:40 +10:00
Jeff Becker
12ea412763 fix dumb dht mistake 2018-08-02 11:10:58 +10:00
Jeff Becker
f8e3ef16b9 correct typo 2018-08-02 10:53:14 +10:00
Jeff Becker
88c84f9e05 update testnet configs 2018-08-02 10:51:08 +10:00
Jeff Becker
d511057b7d * logging updates
* nicknames in RC (yw kee)

* spec update

* more hidden service code
2018-08-02 10:48:43 +10:00
Jeff Becker
bc1c49b092 dht fixes 2018-08-02 08:10:38 +10:00
Jeff Becker
d1bbce8192 add uint16/32 put/read on buffers 2018-08-02 08:09:12 +10:00
Ryan Tharp
14df6724f7 bring kqueue up to date with epoll 2018-07-31 20:32:13 -07:00
Ryan Tharp
c5851cd63a Merge branch 'master' of https://github.com/neuroscr/loki-network 2018-08-01 02:29:21 +00:00
Ryan Tharp
0b32bad7b9 Merge branch 'master' of https://github.com/majestrate/llarp 2018-08-01 02:29:16 +00:00
Ryan Tharp
564d96f0c8 print(), write(filename), commitStream(outstream), private commit() 2018-07-31 19:20:40 -07:00
Jeff Becker
928ec3790d deterministic logging 2018-07-31 08:35:54 +10:00
Jeff Becker
058ce4fae3 don't put private addresses into rc EVER 2018-07-30 15:58:20 +10:00
Jeff Becker
2c652174b9 correct bitmask 2018-07-30 15:52:52 +10:00
Jeff Becker
2e13eac024 make it compile 2018-07-30 15:49:47 +10:00
Jeff Becker
14b27b432e typofix 2018-07-30 15:48:45 +10:00
Jeff Becker
24960ca47b meh 2018-07-30 15:47:54 +10:00
Jeff Becker
a8567b0d21 fix previous commit 2018-07-30 15:45:32 +10:00
Jeff Becker
1f29155f43 typofix 2018-07-30 15:39:12 +10:00
Jeff Becker
3ee597d880 update private range 2018-07-30 15:37:05 +10:00