1 2018-08-08T00:47:44 *** opdenkamp has quit IRC
2 2018-08-08T00:59:50 *** Krellan has quit IRC
3 2018-08-08T01:43:54 *** BlueMatt has quit IRC
4 2018-08-08T01:44:50 *** BlueMatt has joined #bitcoin-core-dev
5 2018-08-08T02:20:36 *** jhfrontz has quit IRC
6 2018-08-08T02:39:21 *** justan0theruser has quit IRC
7 2018-08-08T02:50:33 *** spinza has quit IRC
8 2018-08-08T02:52:57 *** justan0theruser has joined #bitcoin-core-dev
9 2018-08-08T02:58:47 *** spinza has joined #bitcoin-core-dev
10 2018-08-08T03:12:55 *** masonicboom has joined #bitcoin-core-dev
11 2018-08-08T04:17:09 *** arubi has quit IRC
12 2018-08-08T04:18:04 *** arubi has joined #bitcoin-core-dev
13 2018-08-08T04:20:51 *** masonicboom has quit IRC
14 2018-08-08T04:51:05 *** rls has joined #bitcoin-core-dev
15 2018-08-08T05:00:07 *** jhfrontz has joined #bitcoin-core-dev
16 2018-08-08T05:07:04 *** vicenteH has quit IRC
17 2018-08-08T05:07:35 *** vicenteH has joined #bitcoin-core-dev
18 2018-08-08T05:17:18 *** Krellan has joined #bitcoin-core-dev
19 2018-08-08T05:32:13 *** harrymm has quit IRC
20 2018-08-08T05:33:44 *** harrymm has joined #bitcoin-core-dev
21 2018-08-08T05:34:18 *** masonicboom has joined #bitcoin-core-dev
22 2018-08-08T05:38:39 *** harrymm has quit IRC
23 2018-08-08T05:46:24 *** Krellan has quit IRC
24 2018-08-08T05:47:26 *** Krellan has joined #bitcoin-core-dev
25 2018-08-08T05:51:35 *** harrymm has joined #bitcoin-core-dev
26 2018-08-08T06:00:07 *** rls has quit IRC
27 2018-08-08T06:02:45 *** masonicboom has quit IRC
28 2018-08-08T06:04:00 *** masonicboom has joined #bitcoin-core-dev
29 2018-08-08T06:07:06 *** masonicb_ has joined #bitcoin-core-dev
30 2018-08-08T06:08:12 *** masonic__ has joined #bitcoin-core-dev
31 2018-08-08T06:08:21 *** masonicboom has quit IRC
32 2018-08-08T06:11:21 *** masonicb_ has quit IRC
33 2018-08-08T06:12:21 *** masonic__ has quit IRC
34 2018-08-08T06:34:51 *** Krellan has quit IRC
35 2018-08-08T06:35:56 *** Krellan has joined #bitcoin-core-dev
36 2018-08-08T06:43:48 *** osue has joined #bitcoin-core-dev
37 2018-08-08T07:12:18 *** no_input_found has quit IRC
38 2018-08-08T07:12:39 *** no_input_found has joined #bitcoin-core-dev
39 2018-08-08T07:18:49 *** Guyver2 has joined #bitcoin-core-dev
40 2018-08-08T07:28:19 <jonasschnelli> what is the best strategy to deserialize a varlen string from a stream with unknown length (burst read)
41 2018-08-08T07:29:01 <jonasschnelli> NetMessage reads in bytes with unknown length, so it is unknown if the varstring is complete in buffer
42 2018-08-08T07:29:43 <jonasschnelli> I'd like to figure out if the all bytes for the varlen-string are copied to the buffer
43 2018-08-08T07:31:40 *** opdenkamp has joined #bitcoin-core-dev
44 2018-08-08T07:54:21 *** fanquake has joined #bitcoin-core-dev
45 2018-08-08T07:58:48 <fanquake> wumpus 13796 and 13852 (both 0.16) should be able to go in.
46 2018-08-08T08:05:46 *** setpill has joined #bitcoin-core-dev
47 2018-08-08T08:16:38 <wumpus> jonasschnelli: I'm confused--the normal varstring is unknown length isn't it?
48 2018-08-08T08:16:45 <wumpus> fanquake: thanks will take a look
49 2018-08-08T08:17:33 <jonasschnelli> wumpus: the problem is more complicated. I'm reading in bytes from a socket and I'd like to deserialize a varstring,... but need to know how many bytes I need to read from the socket
50 2018-08-08T08:18:06 <jonasschnelli> So I need to look at the varint part of the varstring to know when I have finished readin the buffer that contains the whole varstring
51 2018-08-08T08:18:17 <jonasschnelli> Since it can be 1 byte to n bytes
52 2018-08-08T08:18:31 <jonasschnelli> not n but a verstring of 64bit length
53 2018-08-08T08:21:19 <wumpus> the only way to do that would be to have a fixed-sized header that specifies the length to read, although this is typically DoS-prone especially if the buffer is allocated at once and remote can specify a very large buffer
54 2018-08-08T08:21:40 *** Krellan has quit IRC
55 2018-08-08T08:22:16 <jonasschnelli> wumpus: Yes. But nevermind. I think i'm creating a non-existing problem
56 2018-08-08T08:22:30 <jonasschnelli> I'm implementing BIP151 message structures: https://github.com/bitcoin/bips/blob/master/bip-0151.mediawiki#encrypted-messages-structure
57 2018-08-08T08:23:07 <jonasschnelli> And the varstring command made me some problems... But I forgot that the inner message structure is always present at complete length (since it's MAC has must been checked beforehand)
58 2018-08-08T08:23:34 *** timothy has joined #bitcoin-core-dev
59 2018-08-08T08:25:16 *** AaronvanW has joined #bitcoin-core-dev
60 2018-08-08T08:26:24 *** Aaronvan_ has joined #bitcoin-core-dev
61 2018-08-08T08:30:18 *** AaronvanW has quit IRC
62 2018-08-08T08:37:23 *** Krellan has joined #bitcoin-core-dev
63 2018-08-08T08:44:53 *** fanquake has quit IRC
64 2018-08-08T08:46:44 *** Krellan has quit IRC
65 2018-08-08T08:52:31 *** Krellan has joined #bitcoin-core-dev
66 2018-08-08T09:00:38 *** Guyver2 has quit IRC
67 2018-08-08T09:08:17 *** SopaXorzTaker has joined #bitcoin-core-dev
68 2018-08-08T09:20:55 *** Aaronvan_ has quit IRC
69 2018-08-08T09:21:35 *** AaronvanW has joined #bitcoin-core-dev
70 2018-08-08T09:48:16 *** tryphe has quit IRC
71 2018-08-08T09:48:45 *** tryphe has joined #bitcoin-core-dev
72 2018-08-08T09:56:46 *** tryphe has quit IRC
73 2018-08-08T09:57:19 *** tryphe has joined #bitcoin-core-dev
74 2018-08-08T10:19:21 *** jeremyrubin has quit IRC
75 2018-08-08T10:22:35 *** AaronvanW has quit IRC
76 2018-08-08T10:42:12 *** Krellan has quit IRC
77 2018-08-08T11:15:02 *** d9b4bef9 has quit IRC
78 2018-08-08T11:16:07 *** d9b4bef9 has joined #bitcoin-core-dev
79 2018-08-08T11:38:12 *** Krellan has joined #bitcoin-core-dev
80 2018-08-08T12:15:47 *** SopaXorzTaker has quit IRC
81 2018-08-08T12:20:41 *** setpill has quit IRC
82 2018-08-08T12:57:51 *** Krellan has quit IRC
83 2018-08-08T12:59:39 *** Chris_Stewart_5 has joined #bitcoin-core-dev
84 2018-08-08T13:02:58 *** Krellan has joined #bitcoin-core-dev
85 2018-08-08T13:07:58 *** Krellan has quit IRC
86 2018-08-08T13:13:41 *** Krellan has joined #bitcoin-core-dev
87 2018-08-08T13:16:48 *** csknk has joined #bitcoin-core-dev
88 2018-08-08T13:22:57 *** Krellan has quit IRC
89 2018-08-08T13:23:38 *** Krellan has joined #bitcoin-core-dev
90 2018-08-08T13:29:38 *** vicenteH has quit IRC
91 2018-08-08T13:30:08 *** vicenteH has joined #bitcoin-core-dev
92 2018-08-08T13:32:51 *** Krellan has quit IRC
93 2018-08-08T13:37:38 *** SopaXorzTaker has joined #bitcoin-core-dev
94 2018-08-08T13:43:07 *** Krellan has joined #bitcoin-core-dev
95 2018-08-08T13:48:05 *** Krellan has quit IRC
96 2018-08-08T13:52:54 *** booyah has quit IRC
97 2018-08-08T13:58:22 *** Krellan has joined #bitcoin-core-dev
98 2018-08-08T14:00:14 *** ghost43 has quit IRC
99 2018-08-08T14:00:17 *** lukedashjr has joined #bitcoin-core-dev
100 2018-08-08T14:01:05 *** luke-jr has quit IRC
101 2018-08-08T14:01:37 *** lukedashjr is now known as luke-jr
102 2018-08-08T14:06:12 *** Giszmo has joined #bitcoin-core-dev
103 2018-08-08T14:14:26 *** csknk has quit IRC
104 2018-08-08T14:16:59 *** rafalcpp has quit IRC
105 2018-08-08T14:17:44 *** rafalcpp has joined #bitcoin-core-dev
106 2018-08-08T15:03:59 <gmaxwell> lordcow in #bitcoin reports a compile failure on freebsd: https://pastebin.com/wBN0YChc
107 2018-08-08T15:04:16 <gmaxwell> 08:02:23 < LordCow> gmaxwell: FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512
108 2018-08-08T15:04:40 *** michaelsdunn1 has joined #bitcoin-core-dev
109 2018-08-08T15:07:01 *** d9b4bef9 has quit IRC
110 2018-08-08T15:08:09 *** d9b4bef9 has joined #bitcoin-core-dev
111 2018-08-08T15:09:11 *** Victorsueca has quit IRC
112 2018-08-08T15:09:41 *** Victorsueca has joined #bitcoin-core-dev
113 2018-08-08T15:14:58 <wumpus> hmm let me try
114 2018-08-08T15:15:12 <wumpus> I did a recompile on freebsd yesterday so I'd be surprised
115 2018-08-08T15:17:24 <wumpus> of master, though
116 2018-08-08T15:22:11 <wumpus> anyhow probably best for them to create an issue w/ all the version information
117 2018-08-08T15:23:36 <wumpus> it is possible that #13442 fixes it because it converts the failing inline assembly to intrinsice
118 2018-08-08T15:23:37 <gribble> https://github.com/bitcoin/bitcoin/issues/13442 | Convert the 1-way SSE4 SHA256 code from asm to intrinsics by sipa · Pull Request #13442 · bitcoin/bitcoin · GitHub
119 2018-08-08T15:27:48 *** vicenteH has quit IRC
120 2018-08-08T15:34:29 *** vicenteH has joined #bitcoin-core-dev
121 2018-08-08T15:46:01 *** dcousens has quit IRC
122 2018-08-08T15:46:57 *** ghost43 has joined #bitcoin-core-dev
123 2018-08-08T15:47:02 *** dcousens has joined #bitcoin-core-dev
124 2018-08-08T15:55:27 *** jhfrontz has quit IRC
125 2018-08-08T16:28:31 *** masonicboom has joined #bitcoin-core-dev
126 2018-08-08T16:40:09 *** Krellan has quit IRC
127 2018-08-08T16:50:44 *** Krellan has joined #bitcoin-core-dev
128 2018-08-08T16:51:34 *** Victorsueca has quit IRC
129 2018-08-08T16:52:48 *** Victorsueca has joined #bitcoin-core-dev
130 2018-08-08T16:54:51 *** Krellan has quit IRC
131 2018-08-08T16:58:05 *** tryphe has quit IRC
132 2018-08-08T16:58:33 *** tryphe has joined #bitcoin-core-dev
133 2018-08-08T16:59:58 *** no_input_found has quit IRC
134 2018-08-08T17:00:17 *** no_input_found has joined #bitcoin-core-dev
135 2018-08-08T17:00:18 *** Krellan has joined #bitcoin-core-dev
136 2018-08-08T17:09:21 *** Henry151 has quit IRC
137 2018-08-08T17:17:53 *** no_input_found has quit IRC
138 2018-08-08T17:18:40 *** no_input_found has joined #bitcoin-core-dev
139 2018-08-08T17:21:42 *** masonicboom has quit IRC
140 2018-08-08T17:23:58 *** masonicboom has joined #bitcoin-core-dev
141 2018-08-08T17:24:40 *** Krellan has quit IRC
142 2018-08-08T17:25:23 *** Krellan has joined #bitcoin-core-dev
143 2018-08-08T17:29:51 *** Krellan has quit IRC
144 2018-08-08T17:32:29 *** Krellan has joined #bitcoin-core-dev
145 2018-08-08T17:36:50 *** MDrollette has joined #bitcoin-core-dev
146 2018-08-08T17:40:41 *** timothy has quit IRC
147 2018-08-08T17:43:23 *** csknk has joined #bitcoin-core-dev
148 2018-08-08T17:57:33 *** ken2812221 has quit IRC
149 2018-08-08T17:57:41 *** jhfrontz has joined #bitcoin-core-dev
150 2018-08-08T17:58:01 *** ken2812221 has joined #bitcoin-core-dev
151 2018-08-08T17:59:05 *** CubicEarth has quit IRC
152 2018-08-08T18:01:34 *** CubicEarth has joined #bitcoin-core-dev
153 2018-08-08T18:24:40 <jimpo> Would love more reviews on #12254
154 2018-08-08T18:24:44 <gribble> https://github.com/bitcoin/bitcoin/issues/12254 | BIP 158: Compact Block Filters for Light Clients by jimpo · Pull Request #12254 · bitcoin/bitcoin · GitHub
155 2018-08-08T18:26:50 <jonasschnelli> jimpo: Will do... almost forgot about it. But I guess its something for 0.18 which means its not pressing
156 2018-08-08T18:27:58 <jimpo> thx
157 2018-08-08T18:30:01 *** SopaXorzTaker has quit IRC
158 2018-08-08T18:37:25 <jimpo> Not sure about the release schedule, but it's blocking further progress on block filter indexing and ultimately BIP 157 P2P support
159 2018-08-08T18:40:07 <jonasschnelli> jimpo: Yes. Review can always happen,.. a merge though requires spun off of the 0.17 branch (since we are in feature-freeze currently)
160 2018-08-08T18:40:23 <jonasschnelli> But we all want to see progress on BIP157...
161 2018-08-08T18:43:13 *** drexl has joined #bitcoin-core-dev
162 2018-08-08T18:44:51 *** owowo has quit IRC
163 2018-08-08T18:50:09 *** owowo has joined #bitcoin-core-dev
164 2018-08-08T19:02:15 *** booyah has joined #bitcoin-core-dev
165 2018-08-08T19:08:36 *** Guyver2 has joined #bitcoin-core-dev
166 2018-08-08T19:12:21 *** masonicboom has quit IRC
167 2018-08-08T19:12:51 *** Emcy_ has quit IRC
168 2018-08-08T19:30:37 *** TheHoliestRoger has joined #bitcoin-core-dev
169 2018-08-08T19:33:10 *** CryptAxe has quit IRC
170 2018-08-08T19:37:35 *** Cogito_Ergo_Sum has joined #bitcoin-core-dev
171 2018-08-08T19:42:33 *** Victorsueca has quit IRC
172 2018-08-08T19:44:06 *** Victorsueca has joined #bitcoin-core-dev
173 2018-08-08T19:46:09 *** Emcy_ has joined #bitcoin-core-dev
174 2018-08-08T19:58:39 *** Giszmo has quit IRC
175 2018-08-08T19:58:39 *** davex__ has joined #bitcoin-core-dev
176 2018-08-08T20:07:01 *** intcat has quit IRC
177 2018-08-08T20:09:22 *** intcat has joined #bitcoin-core-dev
178 2018-08-08T20:15:16 *** Giszmo has joined #bitcoin-core-dev
179 2018-08-08T20:19:37 *** promag has joined #bitcoin-core-dev
180 2018-08-08T20:25:51 *** Emcy_ has quit IRC
181 2018-08-08T20:44:22 *** StrikeSide_ has joined #bitcoin-core-dev
182 2018-08-08T20:48:45 *** csknk has quit IRC
183 2018-08-08T20:52:08 *** jb55 has quit IRC
184 2018-08-08T20:54:03 *** promag has quit IRC
185 2018-08-08T21:17:27 *** sipa has joined #bitcoin-core-dev
186 2018-08-08T21:23:52 *** kelt has joined #bitcoin-core-dev
187 2018-08-08T21:33:56 *** promag has joined #bitcoin-core-dev
188 2018-08-08T21:41:53 *** Chris_Stewart_5 has quit IRC
189 2018-08-08T21:55:58 *** Guyver2 has quit IRC
190 2018-08-08T21:59:57 *** arubi has quit IRC
191 2018-08-08T22:00:29 *** arubi has joined #bitcoin-core-dev
192 2018-08-08T22:02:01 <gmaxwell> MarcoFalke: sipa: is anyone running 13907 on a listening node? I need feedback on if I'm going to have to increase the limit to 100 or not.
193 2018-08-08T22:07:25 *** adiabat has quit IRC
194 2018-08-08T22:07:26 *** Krellan has quit IRC
195 2018-08-08T22:07:36 <sipa> will run
196 2018-08-08T22:08:06 *** Krellan has joined #bitcoin-core-dev
197 2018-08-08T22:08:07 *** rls has joined #bitcoin-core-dev
198 2018-08-08T22:08:26 <gmaxwell> (i just don't want to bother updating it to pull the tests without knowing what threshold we're going to use)
199 2018-08-08T22:11:29 *** promag has quit IRC
200 2018-08-08T22:17:36 <sipa> running
201 2018-08-08T22:18:46 *** Cogito_Ergo_Sum has quit IRC
202 2018-08-08T22:20:13 *** StrikeSide_ has quit IRC
203 2018-08-08T22:23:35 *** michaelsdunn1 has quit IRC
204 2018-08-08T22:26:08 <gmaxwell> sipa: thanks
205 2018-08-08T22:26:33 <gmaxwell> sipa: grep log for "locator" after a bit
206 2018-08-08T22:40:51 *** promag has joined #bitcoin-core-dev
207 2018-08-08T22:46:42 *** masonicboom has joined #bitcoin-core-dev
208 2018-08-08T22:53:34 *** tryphe_ has joined #bitcoin-core-dev
209 2018-08-08T22:54:55 *** Emcy_ has joined #bitcoin-core-dev
210 2018-08-08T22:56:02 *** michagogo_ has joined #bitcoin-core-dev
211 2018-08-08T22:57:05 *** vicenteH has quit IRC
212 2018-08-08T22:57:21 *** [\\\] has joined #bitcoin-core-dev
213 2018-08-08T23:01:34 *** ovovo has joined #bitcoin-core-dev
214 2018-08-08T23:02:47 *** owowo has quit IRC
215 2018-08-08T23:02:47 *** CubicEarth has quit IRC
216 2018-08-08T23:02:47 *** tryphe has quit IRC
217 2018-08-08T23:02:48 *** TD-Linux has quit IRC
218 2018-08-08T23:02:48 *** queip has quit IRC
219 2018-08-08T23:02:48 *** MDrollette has quit IRC
220 2018-08-08T23:02:48 *** tripleslash has quit IRC
221 2018-08-08T23:02:49 *** hardforkthis has quit IRC
222 2018-08-08T23:02:49 *** michagogo has quit IRC
223 2018-08-08T23:02:49 *** cornfeedhobo has quit IRC
224 2018-08-08T23:02:57 *** michagogo_ is now known as michagogo
225 2018-08-08T23:05:28 *** TD--Linux has joined #bitcoin-core-dev
226 2018-08-08T23:05:37 *** queip has joined #bitcoin-core-dev
227 2018-08-08T23:05:55 *** TD--Linux is now known as TD-Linux
228 2018-08-08T23:07:25 *** drexl has quit IRC
229 2018-08-08T23:08:24 *** cornfeedhobo has joined #bitcoin-core-dev
230 2018-08-08T23:09:14 *** infernix has quit IRC
231 2018-08-08T23:11:57 *** justan0theruser has quit IRC
232 2018-08-08T23:12:44 *** justanotherus3r has joined #bitcoin-core-dev
233 2018-08-08T23:19:00 *** infernix has joined #bitcoin-core-dev
234 2018-08-08T23:20:47 *** promag has quit IRC
235 2018-08-08T23:21:21 *** Krellan has quit IRC
236 2018-08-08T23:32:17 *** masonicboom has quit IRC
237 2018-08-08T23:37:12 *** promag has joined #bitcoin-core-dev
238 2018-08-08T23:38:39 *** kaxnet has joined #bitcoin-core-dev
239 2018-08-08T23:45:58 *** kaxnet has quit IRC
240 2018-08-08T23:50:57 *** Krellan has joined #bitcoin-core-dev
241 2018-08-08T23:57:01 *** d9b4bef9 has quit IRC
242 2018-08-08T23:58:07 *** d9b4bef9 has joined #bitcoin-core-dev