Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

recent changes #791

Merged
merged 33 commits into from
Feb 1, 2017
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
34939f9
calculate shared key in separate therad
orignal Jan 20, 2017
65ccc5b
send actual local address to webirc
orignal Jan 20, 2017
a746f56
calculate shared key in separate thread for incoming connection
orignal Jan 21, 2017
da50d92
Merge branch 'openssl' of https://github.com/PurpleI2P/i2pd into openssl
orignal Jan 22, 2017
162b60a
Added script - builder for mingw.
r4sas Jan 22, 2017
29944f6
cleanup stream upon termination
orignal Jan 23, 2017
8ab5527
Merge branch 'openssl' of https://github.com/PurpleI2P/i2pd into openssl
orignal Jan 23, 2017
8e4bd7f
build with openssl 1.1
orignal Jan 23, 2017
bcd6bd6
correct handle of AESNI/AVX
orignal Jan 23, 2017
14d74d3
use openssl 1.1 for androidn build
orignal Jan 23, 2017
188987a
eliminated deprecated function
orignal Jan 23, 2017
4d2f26b
limit number of precalculated DH pairs
orignal Jan 25, 2017
a6785e9
support of 'X' in RouterInfo
orignal Jan 25, 2017
7196bfd
keep bandwidth caps if unreachable
orignal Jan 25, 2017
a840ed0
update android notification icon
r4sas Jan 26, 2017
faa368c
show if router is connected in i2p.router.status
orignal Jan 26, 2017
aa86593
send correct response if JSON parse error
orignal Jan 27, 2017
4aa48fb
websocks added
orignal Jan 28, 2017
28cf450
show status of shared local destination
orignal Jan 28, 2017
2d46cb0
disabled cleanup() before deleting stream on termination (line 54)
r4sas Jan 28, 2017
f722b3e
Moved reopening of log to SIGUSR1 (16)
r4sas Jan 29, 2017
bdcbaa0
clean transit tunnels endpoints
orignal Jan 30, 2017
3523047
#788 ReseedFromZIPFile added
orignal Jan 31, 2017
7094588
print zlib error codes
orignal Jan 31, 2017
3e26054
cleanup error messages
orignal Jan 31, 2017
76fd1c5
udp sockets for sam
majestrate Jan 30, 2017
775b9f3
indentation fixes and SAM datagrams
majestrate Jan 31, 2017
cb6a1bf
unindent
majestrate Jan 31, 2017
764b8ab
wrong param
majestrate Jan 31, 2017
925c514
use correct format
majestrate Jan 31, 2017
ace16d4
fix
majestrate Jan 31, 2017
0b46495
i2p.router.net.tunnels.successrate
orignal Jan 31, 2017
9030b3e
Merge pull request #790 from majestrate/sam-datagrams
orignal Jan 31, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
wrong param
  • Loading branch information
majestrate committed Jan 31, 2017
commit 764b8ab7a56d2c2adbb0d2adec5e6964034d5503
2 changes: 1 addition & 1 deletion SAM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ namespace client
data[3] = ' ';
memcpy(data+4, base64.c_str(), bsz);
data[4+bsz] = '\n';
memcpy(data+4+bsz+1, buf, sz);
memcpy(data+4+bsz+1, buf, len);
// send to remote endpoint
m_Owner.SendTo(data, sz, ep);
delete [] buf;
Expand Down