<isd>
TimMc: poked a friend today. The issue I was remembering was that the other CAs won't cross sign for wildcard certs. It might be more feasible once all the browsers trust letsencrypt directly
<isd>
TMM: not sure what you mean by 'non ez'?
jemc has quit [Ping timeout: 240 seconds]
<isd>
(The cross-signing thing is apparently in their charter somewhere)
Zarutian has quit [Read error: Connection reset by peer]
Zarutian_ has joined #sandstorm
jemc has quit [Quit: WeeChat 1.4]
jemc has joined #sandstorm
jemc has quit [Ping timeout: 260 seconds]
jemc has joined #sandstorm
Zarutian_ has quit [Quit: Zarutian_]
jemc has quit [Ping timeout: 246 seconds]
jemc has joined #sandstorm
Zarutian has joined #sandstorm
dimmech has joined #sandstorm
dimmech has left #sandstorm [#sandstorm]
<TMM>
Does anyone have a link to a full api doc for capnproto?
n8a_ has quit [Ping timeout: 246 seconds]
n8a_ has joined #sandstorm
ShalokShalom has joined #sandstorm
jemc has quit [Ping timeout: 246 seconds]
Telesight has quit [Quit: Leaving.]
ShalokShalom has quit [Ping timeout: 240 seconds]
ShalokShalom has joined #sandstorm
jemc has joined #sandstorm
aundro has quit [Ping timeout: 252 seconds]
aundro has joined #sandstorm
<kentonv>
TMM: there isn't a reference doc but the headers are well-commented
ShalokShalom has quit [Ping timeout: 256 seconds]
cevi has quit [Quit: ZNC 1.6.4+deb1+b1 - http://znc.in]
cevi has joined #sandstorm
TC01 has quit [Quit: No Ping reply in 180 seconds.]
TC01 has joined #sandstorm
ragesoss has quit [Read error: Connection reset by peer]
ragesoss has joined #sandstorm
afuentes has quit [Ping timeout: 264 seconds]
LilianMoraru has joined #sandstorm
<LilianMoraru>
Hello
<LilianMoraru>
I want to use the Rust implementation of Cap’n Proto and I am curious if the RPC works over TCP or shared memory?
<LilianMoraru>
I saw that the official site mentions shared memory but I have not seen how I can differentiate between these. I want to know if I want something like Cap'n Proto Serialization + Nanomsg(and loon "Time-Traveling") or the RPC already supports this. #dwrensha
<LilianMoraru>
lose on "Time-Traveling"*
jadewang has joined #sandstorm
<dwrensha>
LilianMoraru: the RPC works over any futures-enabled byte streams
<dwrensha>
now that tokio-io is a thing, twoparty::VatNetwork::new() ought to take an AsyncRead and an AsyncWrite, rather than a Read and a Write as it does now
<dwrensha>
in the next version (0.9) I'd like twoparty::VatNetwork::new() to take a futures::Stream and a futures::Sink, rather than a Read and a Write
<dwrensha>
LilianMoraru: I've only ever used it over TCP and Unix sockets
<LilianMoraru>
I see, so it expects something that implements the trait, it so happens that TCP already does that
<LilianMoraru>
From what I understand, all that is needed is for the protocol to implement the correct interfaces