avsm changed the topic of #mirage to: mirage 2 released! party on!
tomboy64 has quit [Quit: Uhh ... gotta go.]
tomboy64 has joined #mirage
tomboy64 has quit [Quit: Uhh ... gotta go.]
tomboy64 has joined #mirage
noddy has quit [Ping timeout: 246 seconds]
yegods has quit [Read error: Connection reset by peer]
yegods has joined #mirage
dsheets has joined #mirage
dsheets has quit [Ping timeout: 250 seconds]
mcclurmc has quit [Quit: Leaving]
yegods has quit [Ping timeout: 250 seconds]
mcclurmc has joined #mirage
mcclurmc has quit [Remote host closed the connection]
yegods has joined #mirage
yegods has quit [Remote host closed the connection]
sigjuice has quit [Ping timeout: 246 seconds]
sigjuice has joined #mirage
mcclurmc has joined #mirage
mcclurmc has quit [Remote host closed the connection]
aantron has quit [Remote host closed the connection]
insitu has joined #mirage
insitu has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jermar has joined #mirage
dsheets has joined #mirage
dsheets has quit [Ping timeout: 250 seconds]
jermar has quit [Remote host closed the connection]
jermar has joined #mirage
noddy has joined #mirage
jermar has quit [Ping timeout: 260 seconds]
insitu has joined #mirage
dsheets has joined #mirage
dsheets has quit [Ping timeout: 250 seconds]
noddy has quit [Ping timeout: 250 seconds]
jermar has joined #mirage
wildsebastian has joined #mirage
insitu has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dsheets has joined #mirage
insitu has joined #mirage
insitu has quit [Read error: Connection reset by peer]
insitu has joined #mirage
dsheets has quit [Ping timeout: 250 seconds]
dsheets has joined #mirage
dsheets has quit [Remote host closed the connection]
dsheets has joined #mirage
dsheets has quit [Remote host closed the connection]
dsheets has joined #mirage
yegods has joined #mirage
yegods has quit [Remote host closed the connection]
insitu has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
yegods has joined #mirage
tomboy64 has quit [Ping timeout: 276 seconds]
mort___ has joined #mirage
tomboy65 has joined #mirage
tomboy65 has quit [Ping timeout: 252 seconds]
tomboy64 has joined #mirage
insitu has joined #mirage
dsheets has quit [Remote host closed the connection]
dsheets has joined #mirage
yegods has quit [Remote host closed the connection]
yegods has joined #mirage
dsheets has quit [Remote host closed the connection]
mort___ has quit [Quit: Leaving.]
aantron has joined #mirage
yegods has quit [Ping timeout: 268 seconds]
yegods has joined #mirage
insitu has quit [Read error: Connection reset by peer]
yegods has quit [Read error: Connection reset by peer]
insitu has joined #mirage
yegods has joined #mirage
mort___ has joined #mirage
dsheets has joined #mirage
insitu has quit [Ping timeout: 250 seconds]
pyvpx has quit [Ping timeout: 250 seconds]
<mort___> hannes: there?
<hannes> no, but here... not there..
yegods has quit [Ping timeout: 260 seconds]
insitu has joined #mirage
demonimin has quit [Ping timeout: 250 seconds]
demonimin has joined #mirage
pyvpx has joined #mirage
wildsebastian has quit [Ping timeout: 250 seconds]
yegods has joined #mirage
mato has quit [Ping timeout: 250 seconds]
mato has joined #mirage
mort___ has quit [Quit: Leaving.]
mort___ has joined #mirage
<mort___> sorry was afk :)
<mort___> so— about ocaml-pcap and the mess i made of it...
<mort___> i'm trying to put together a cleaned up master that doesn't have all the random commits i made in PR #3
<mort___> does anyone have an objection to that? is anyone actively using the current master branch and would find it annoying to have yet another pointless API change?
<hannes> mort___: I use the latest release, as do most people I'd think
<mort___> yeah, that's what i figured
<hannes> and you should never depend on a current/master branch for some API... rather stick to the API of the latest release
<hannes> thus: no objection from me
<hannes> :
<mort___> cool :)
<hannes> :) and thx for caring about it
<mort___> i'll try not to balls it up so badly this time…!
mato has quit [Ping timeout: 268 seconds]
mato has joined #mirage
wildsebastian has joined #mirage
yegods has quit [Ping timeout: 240 seconds]
dsheets has quit [Remote host closed the connection]
dsheets has joined #mirage
dsheets has quit [Remote host closed the connection]
dsheets has joined #mirage
yegods has joined #mirage
insitu has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
seangrove has joined #mirage
wildseba1 has joined #mirage
noddy has joined #mirage
wildsebastian has quit [Ping timeout: 276 seconds]
yegods has quit [Read error: Connection reset by peer]
yegods has joined #mirage
yegods has quit [Read error: Connection reset by peer]
yegods has joined #mirage
tomboy64 has quit [Ping timeout: 260 seconds]
dsheets has quit [Remote host closed the connection]
yegods has quit [Read error: Connection reset by peer]
<mort___> hannes: ok, my master branch now has my bad PR reverted and all djs55 good stuff reapplied (i think)
<mort___> before i dive off into the wilderness again — what i was trying to do with the bad PR was add support for a bunch of other packet formats. would you think that useful to add to this library, or something best done in some kind of aggregate library that uses this one for pcap parsing alone and pulls in others for other packet formats?
tomboy64 has joined #mirage
dsheets has joined #mirage
<hannes> mort___: two scenarios: you want to implement protocol X --> the wire format of X should be in library X.wire_structs (to be reusable by other things)
<hannes> second: you just want to be able to parse Y, Z, A, B, and C: implement as a single independent library where people who want to work on protocol Y, Z, A, B can later carve it out into their own library
<mort___> yes— so (1) is what i believe several libs are now working towards (tftp.wire, mindy's recent work with tcpip), and (2) is where i'd gone to with my bad pr
<mort___> however, i'm now wondering whether ocaml-pcap is the place to do this or not at all
<mort___> as in, keep ocaml-pcap (which is the repo name for pcap-format ocamlfind lib) to be just pcap specific related stuff
<mort___> and then having some other as-yet-non-existing lib that aggregates pcap-format, such wire parsers as exist, and provides it's own parser-only implemnetations as needed
<mort___> since there are non-pcap capture formats that might reasonably be supported in such a tool, and since many people (possibly a majority?) will only want PCAP as it is
<mort___> plus specific protocols that they may be doing themselves, ie they won't want to pull in some kind of parses-everything tool
<mort___> i'm tempted therefore to force push my master onto mirage/ocaml-pcap, retaining my bad old-master as mor1-playpen
<mort___> any objections?
<mort___> (have checked with djs55, he's ok with this)
seangrove has quit [Remote host closed the connection]
seangrove has joined #mirage
<hannes> sounds good to me. yes, pcap-format should deal with pcap-format
wildsebastian has joined #mirage
wildseba1 has quit [Ping timeout: 268 seconds]
seangrove has quit [Ping timeout: 250 seconds]
seangrove has joined #mirage
mort___ has quit [Quit: Leaving.]
dsheets has quit [Remote host closed the connection]
yegods has joined #mirage
dsheets has joined #mirage
mort___ has joined #mirage
jermar has quit [Ping timeout: 252 seconds]
<mort___> hannes: ok, force push done
<mort___> hopeflly i didn't break anything (again)
insitu has joined #mirage
wildsebastian has quit [Ping timeout: 260 seconds]
brson has joined #mirage
dsheets has quit [Remote host closed the connection]
dsheets has joined #mirage
yegods has quit [Ping timeout: 260 seconds]
yegods has joined #mirage
dsheets has quit [Ping timeout: 244 seconds]
yegods has quit [Ping timeout: 260 seconds]
yegods has joined #mirage
mcclurmc has joined #mirage
yegods has quit [Ping timeout: 260 seconds]
yegods has joined #mirage
dsheets has joined #mirage
yegods has quit [Read error: Connection reset by peer]
dsheets has quit [Ping timeout: 246 seconds]
seangrov` has joined #mirage
insitu has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
seangrove has quit [Ping timeout: 246 seconds]
yegods has joined #mirage
mort___ has quit [Quit: Leaving.]
wildsebastian has joined #mirage
dezzy has quit [Ping timeout: 244 seconds]
dezzy has joined #mirage
dezzy has quit [Ping timeout: 268 seconds]
dezzy has joined #mirage
dezzy has quit [Ping timeout: 260 seconds]
dezzy has joined #mirage
noddy has quit [Ping timeout: 260 seconds]
dezzy has quit [Ping timeout: 240 seconds]
dezzy has joined #mirage
dezzy has quit [Ping timeout: 240 seconds]
dezzy has joined #mirage
dezzy has quit [Read error: Connection reset by peer]
noddy has joined #mirage
dezzy has joined #mirage
jermar has joined #mirage
dezzy_ has joined #mirage
dezzy has quit [Ping timeout: 250 seconds]
dezzy has joined #mirage
dezzy_ has quit [Ping timeout: 244 seconds]
dezzy_ has joined #mirage
dezzy has quit [Ping timeout: 240 seconds]
dezzy_ has quit [Ping timeout: 260 seconds]
dezzy has joined #mirage
dezzy has quit [Read error: Connection reset by peer]
dezzy has joined #mirage
_whitelogger has joined #mirage
dsheets has joined #mirage
dezzy_ has joined #mirage
insitu has joined #mirage
dezzy has quit [Ping timeout: 276 seconds]
dsheets has quit [Ping timeout: 250 seconds]
dezzy has joined #mirage
dezzy_ has quit [Ping timeout: 252 seconds]
dezzy_ has joined #mirage
dezzy has quit [Ping timeout: 260 seconds]
dezzy_ has quit [Ping timeout: 260 seconds]
dezzy has joined #mirage
noddy has quit [Ping timeout: 260 seconds]
dezzy_ has joined #mirage
dezzy has quit [Ping timeout: 276 seconds]
dezzy has joined #mirage
dezzy_ has quit [Ping timeout: 260 seconds]
dezzy has quit [Ping timeout: 260 seconds]
dezzy has joined #mirage
dezzy_ has joined #mirage
dezzy has quit [Ping timeout: 250 seconds]
dezzy has joined #mirage
dezzy_ has quit [Ping timeout: 276 seconds]
dezzy has quit [Ping timeout: 260 seconds]
dezzy has joined #mirage
dezzy_ has joined #mirage
dezzy has quit [Ping timeout: 276 seconds]
dezzy has joined #mirage
dezzy_ has quit [Ping timeout: 268 seconds]
yegods has quit [Remote host closed the connection]
dezzy has quit [Ping timeout: 252 seconds]
dezzy has joined #mirage
noddy has joined #mirage
dezzy has quit [Ping timeout: 260 seconds]
dezzy has joined #mirage
dezzy_ has joined #mirage
dezzy has quit [Ping timeout: 260 seconds]
mort___ has joined #mirage
dezzy_ has quit [Ping timeout: 276 seconds]
dezzy has joined #mirage
mort___ has left #mirage [#mirage]
insitu has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dezzy has quit [Ping timeout: 250 seconds]
dezzy has joined #mirage
dezzy has quit [Ping timeout: 276 seconds]
dezzy has joined #mirage
dezzy has quit [Ping timeout: 276 seconds]
dsheets has joined #mirage
dsheets_ has joined #mirage
dsheets_ has quit [Read error: Connection reset by peer]
dsheets has quit [Ping timeout: 250 seconds]
dezzy has joined #mirage
dezzy has quit [Ping timeout: 252 seconds]
dezzy has joined #mirage
dezzy_ has joined #mirage
dezzy has quit [Ping timeout: 246 seconds]
dezzy has joined #mirage
dezzy_ has quit [Ping timeout: 260 seconds]
dezzy has quit [Ping timeout: 268 seconds]
dezzy has joined #mirage
dezzy has quit [Ping timeout: 240 seconds]
dezzy has joined #mirage
tomboy64 has quit [Ping timeout: 250 seconds]
dezzy has quit [Ping timeout: 250 seconds]
dezzy has joined #mirage
seangrov` has quit [Ping timeout: 268 seconds]
yegods has joined #mirage
dezzy has quit [Ping timeout: 276 seconds]
dezzy has joined #mirage
yegods has quit [Remote host closed the connection]
dezzy_ has joined #mirage
dezzy has quit [Ping timeout: 276 seconds]
dsheets has joined #mirage
dezzy has joined #mirage
dezzy_ has quit [Ping timeout: 246 seconds]
dsheets has quit [Ping timeout: 260 seconds]
dezzy_ has joined #mirage
dezzy has quit [Ping timeout: 276 seconds]
noddy has quit [Ping timeout: 260 seconds]
dezzy has joined #mirage
tomboy64 has joined #mirage
dezzy_ has quit [Ping timeout: 276 seconds]
dezzy_ has joined #mirage
dezzy has quit [Ping timeout: 276 seconds]
dezzy_ has quit [Ping timeout: 250 seconds]
tomboy64 has quit [Ping timeout: 250 seconds]
tomboy64 has joined #mirage
<apache2> oh no you broke my PR! ;)
<apache2> no :)
tomboy64 has quit [Ping timeout: 260 seconds]
noddy has joined #mirage
dezzy has joined #mirage
dezzy has quit [Ping timeout: 244 seconds]
dezzy has joined #mirage
tomboy64 has joined #mirage
yegods has joined #mirage
dezzy has quit [Ping timeout: 252 seconds]
wildsebastian has quit [Ping timeout: 250 seconds]
dsheets has joined #mirage
dezzy has joined #mirage
dsheets has quit [Ping timeout: 260 seconds]
dezzy has quit [Ping timeout: 276 seconds]
dezzy has joined #mirage
noddy has quit [Ping timeout: 244 seconds]
dezzy has quit [Ping timeout: 246 seconds]
dezzy has joined #mirage
dezzy has quit [Ping timeout: 250 seconds]
dezzy has joined #mirage
noddy has joined #mirage