--- Log for 29.08.112 Server: rajaniemi.freenode.net Channel: #rockbox --- Nick: logbot_ Version: Dancer V4.16 Started: 8 days and 12 hours ago 00.03.07 # wodz, TheSeven: looking at 47bade1437d5281a5aca0ec8b2b9a3956f88f685 and http://www.rockbox.org/irc/log-20120429#20:42:36 one thing jumps out to me: The way the code looks now, usb_status_event() disables interrupts. Is that safe? 00.03.07 Ctcp Ping from gevaerts!~fg@rockbox/developer/gevaerts 00.04.30 # It's called from within an interrupt handler as far as I can see 00.06.26 Quit Rower85 (Quit: Hmmm...) 00.06.56 # gevaerts: I am not really the person to discuss this. I know almost nothing about usb and even less about usb core in n2g and classic 00.07.13 # I don't really see why interrupts need to be disabled there to be honest 00.07.38 # gevaerts: you mean usb_drv_usb_detect_event? 00.07.52 # No. usb_status_event() in usb.c 00.08.01 # paste the diff and I'll check on my n2g 00.08.22 # ah right, that didn't turn up in the diff 00.08.59 # wodz: http://paste.debian.net/186147/ 00.09.03 # gevaerts: shouldn't the queue itself take care about irqs? 00.09.16 # TheSeven: yes, exactly 00.09.27 # does it disable IRQs in the process? :) 00.09.35 # No idea 00.09.39 # anyway, I think disabling IRQs there shouldn't hurt 00.09.54 # if we're indeed inside an IRQ handler, IRQs are disabled anyway 00.10.06 # and restore_irq shouldn't spuriously reenable them in that case 00.10.09 # so that looks safe 00.10.25 # ok, so that's not it, probably 00.10.55 # Disabling them there guarantees atomicity of the entire block, which is why it's there I guess 00.11.40 # wodz: can you try http://pastebin.com/trnvYAye (which is what funman seems to have found)? 00.11.56 # I'd like to see if the information we have is actually correct :) 00.13.48 # If that does indeed make a difference, the different handling comes down to doing that queue_post() from the interrupt handler that detects the change as opposed to doing the queue_post() from a tick task just a bit later 00.13.58 # wodz: also, what is the exact failing behavior at the moment? 00.14.31 # is this a bad time to ask for help with the theme site? 00.15.00 Join Thra11 [0] (~thrall@161.46.112.87.dyn.plus.net) 00.15.06 # which I would find interesting, since the message would only be handled a while later anyway (thread switching and all) 00.15.22 # * wodz building 00.15.24 # Well, actually... 00.15.54 # the usb_tick() way actually waits for three ticks before it does something 00.16.14 Quit Thra11_ (Ping timeout: 245 seconds) 00.16.27 # gevaerts: debounce? 00.17.10 # TheSeven: that seems to be the intention, yes, but it has the side effect of introducing a longer delay, which could make a difference for the driver/controller I guess 00.17.26 # I know we're getting several back to back bus resets while connecting 00.17.46 # maybe something doesn't like the event to be posted multiple times before the first one gets processed? 00.18.32 # This isn't about bus resets yet. We're still just handling the insert interrupt 00.18.44 # well what's triggering that? 00.18.56 # there is no such thing as an insert interrupt on n2g I think... 00.18.59 # hm, wait 00.19.10 # I'm looking at the wrong file... 00.19.24 # wodz: is my device supposed to have touch screen or only the buttons at the top ? 00.19.27 # we get one bus reset when starting up the usb core, one after soft connect, and then I think an "enumeration done" IRQ 00.19.34 # gevaerts: with the last pastebin n2g doesn't enter usb mode at all 00.19.39 # pamaury: only buttons 00.19.54 # wodz: ok 00.20.44 # wodz: is usb stack disabled by default ? 00.21.09 # pamaury: can't remember it was long ago I touched this 00.21.17 # wodz: that seems to make some sense. I'm not sure what funman meant then... 00.21.43 # * gevaerts is confused now 00.22.15 # hmm, why isn't the usb stack starting then...the device detects it's charging but that's all 00.23.53 # gevaerts, TheSeven: with master HEAD I get panic on usb insert 00.24.40 # what kind of panic? 00.25.30 # stkov 5300 00.26.34 # hm, what about increasing various stack sizes to check if this is indeed a stkov? 00.26.49 # main and USB stack in this case 00.27.13 # 5300? That's supposed to be the name of the thread... 00.27.28 # gevaerts: not if there's memory corruption :P 00.27.47 # True, but it's memory corruption in an interesting place 00.28.01 # maybe the thread struct is right next to the stack? 00.28.57 # how much add to usb stack? 10k? more? 00.29.09 # what is it currently? 00.29.14 # I'd add like 4k words 00.29.21 # we have plenty of ram 00.29.29 # (DEFAULT_STACK_SIZE + DUMP_BMP_LINESIZE)/sizeof(long) 00.29.29 # * gevaerts nods 00.29.53 # that's tiny 00.30.18 # default stack size is like 1k? or 4k? 00.30.21 # anyway, peanuts 00.30.33 # add some 16k-ish on top of that and check if it still happens 00.31.47 # default is 1K if I read things correctly 00.31.54 # +0x4000 and panic went away 00.31.56 # is it only broken on the nano2g or also on amsv2 ? 00.32.12 # I mean in usb stack 00.32.28 # hm ok 00.33.13 # Did things actually work? 00.33.17 # but disk doesn't show up 00.33.21 # ok 00.33.40 # wodz: any trace of the device connecting? 00.33.43 # windows or linux? 00.33.53 # linux 00.33.58 # anything in dmesg? 00.34.13 # it get pretty far 00.34.55 # http://pastie.org/4606482 00.36.02 Join Scromple [0] (~Simon@119.225.209.134) 00.36.11 # "1982464 2048-byte logical blocks: (4.06 GB/3.78 GiB)" thrice? 00.36.26 # probably lots of bus resets 00.36.36 # Do you have HID enabled? (or is that still disabled entirely on the nano2g?) 00.37.03 # probably still disabled 00.37.08 # never got around to sorting that out 00.37.24 # it hangs on usb screen disconnected 00.37.36 # ah, so sw lockup after a dozen bus resets 00.37.46 # I'm mainly asking because of the evbug lines 00.38.10 # gevaerts: they continue after "usb 1-1.1: device descriptor read/64, error -110", that can't be the ipod 00.38.35 # Good point 00.38.36 # There is nothing else connected 00.39.00 # wodz: you definitely have a keyboard, mouse, touchpad or anything 00.39.10 # right 00.39.27 # OK, so lots of bus resets 00.39.38 # and a device-side lockup 00.39.50 # which might have caused some of them 00.40.15 # but the events in second 61154 look like it recovered from several resets before it finally dies 00.40.37 # yes 00.40.52 Quit pamaury (Read error: Connection reset by peer) 00.40.54 # we've seen linux ehci flakiness in the past... but I'm not sure if this is related here 00.41.30 # I'd say 47bade1 might well have caused the extra stack usage, but it seems unlikely to have caused this 00.41.54 # which usb driver is this using? 00.42.08 # still my s3c6400x one, or the new unified one by funman? 00.42.08 Join CaptainKewl [0] (~captainke@207-237-110-248.c3-0.nyr-ubr2.nyr.ny.cable.rcn.com) 00.43.36 # evbug lines comes from synaptic touchpad driver grrr 00.44.29 # TheSeven: the unified one, I think 00.44.52 # http://git.rockbox.org/?p=rockbox.git;a=commit;h=d46afc629ef69af307ae44945d7a1be2e6afad64 00.44.57 # that commit message seems suspicious 00.45.11 # so this probably dates back more than 9 months... 00.48.28 # wodz: could you try http://pastebin.com/trnvYAye again with the bigger stack? That's not going to actually fix things, but I do want to get USB_DETECT_BY_REQUEST enabled at some point... 00.48.42 Join lebellium_ [0] (~chatzilla@i02m-212-194-176-149.d4.club-internet.fr) 00.48.57 # I removed offending evbug module and now I get much cleaner dmesg 00.49.38 # (USB_DETECT_BY_REQUEST fixes charger detection) 00.49.44 # this smells very suspicious: http://git.rockbox.org/?p=rockbox.git;a=blob;f=firmware/target/arm/usb-s3c6400x.c;h=48521aa622f24bc8653e219aac2b686422296038;hb=refs/heads/master#l378 00.50.46 # wow, at second attempt n2g shows up but I get constant flow of bus resets 00.51.06 # wodz: try changing those three values to 512 00.52.04 Quit lebellium (Ping timeout: 246 seconds) 00.52.07 Nick lebellium_ is now known as lebellium (~chatzilla@i02m-212-194-176-149.d4.club-internet.fr) 00.52.30 # TheSeven: you mean GRXFSIZ = 512; GNPTXFSIZ = (512 << 16) | 512; ? 00.52.34 # yes 00.52.52 # and if that still acts up, try changing them all to 256, but that shouldn't be necessary 00.56.03 # with 512 disk shows up but can't be mounted 00.56.52 # hm... so whatever we're seeing here is at least partially caused by hardware 00.57.07 # because that change should be fully transparent to software except for possibly minimal timing changes 00.58.29 # 256 doesn't change anything 00.59.19 # wodz: so with 512 you don't get that "stuttering" in dmesg anymore, but it still doesn't mount, and still locks up (doesn't leave usb screen on unplug)? 01.00.04 # http://pastie.org/4606653 01.00.43 # I do get 'stuttering' in dmesg but with 512 it gets slightly further 01.00.53 # and yes it locks up 01.01.39 # wodz: can you capture dmesg of plugging a regular thumbdrive on that box? 01.01.47 # sure 01.01.53 # does that go straight through without any repeated lines? 01.02.00 # btw, here's another driver for this core: http://pastie.org/4606631 01.02.42 # http://pastie.org/4606667 01.03.18 # hm, odd 01.04.31 # I also see three "Assuming drive cache: write through" lines here for a random USB disk 01.05.15 # true 01.05.32 # that's nano2g with OF here: http://pastie.org/4606681 01.05.51 # 3 capacity lines, but no cache stuff 01.06.04 # so maybe we should start looking at actual usb traces instead of dmesg 01.06.17 # * gevaerts nods 01.07.15 Quit Strife89 (Quit: Heading out) 01.07.52 # http://pastie.org/4606694 - thats usb disk mode entered from emcore which works fairly well 01.11.11 *** Saving seen data "./dancer.seen" 01.12.58 # you mean umsboot? 01.13.05 # or OF disk mode? 01.13.29 # of disk mode 01.13.35 # can you try umsboot? 01.13.48 # because that's basically based on rockbox's old usb code 01.13.59 # how to do this? 01.14.07 # should be in the tools menu 01.16.41 # you mean the place where Power off, Diagnostics mode and so on? 01.17.39 Quit Thra11 (Ping timeout: 252 seconds) 01.18.00 # where diagnostics, uninstall, format data partition, settings, ... is 01.18.21 # if you "click" the last icon in the "iconflow" chooser 01.18.31 # that menu should contain umsboot... 01.19.15 # "Run UMSboot" 01.19.52 Quit bertrik (Ping timeout: 264 seconds) 01.20.04 # found it 01.20.43 # http://pastie.org/4606763 01.21.01 # does it mount? 01.21.05 # but disk doesn't show up in system actually 01.21.20 # hm... so that bug dates back even earlier than I had expected... 01.21.31 # I could have sworn the umsboot code works 01.21.48 # user890104: what's your experience with this? 01.22.01 # possibly related to linux ehci trouble? 01.22.43 # TheSeven: do you have a link about this linux ehci thing? 01.23.43 # I was affected by ehci bug on my previous laptop but this new on doesn't have any problem in this regard 01.24.04 # linux 3.0 and up is said to fix this finally 01.24.19 # https://bugzilla.kernel.org/show_bug.cgi?id=11159 01.24.25 # https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.20/+bug/88746 01.25.48 # thanks 01.26.48 # so this has been around for only about 5 years? wow 01.33.12 Quit wodz (Quit: Leaving) 01.43.14 Part amayer 01.52.18 Quit lebellium (Ping timeout: 248 seconds) 03.11.12 *** Saving seen data "./dancer.seen" 03.11.31 Quit eckoit (Quit: eckoit) 03.47.35 Join frenchverbs [0] (~chatzilla@c-71-193-88-22.hsd1.mn.comcast.net) 03.48.00 # Can someone point me to the nightly releases of the iPod Classic? 03.57.39 # I found them, but is the iPod classic called the iPod Video? 04.09.23 Quit frenchverbs (Quit: ChatZilla 0.9.88.2 [Firefox 17.0a1/20120827030549]) 04.15.42 Quit soap (Ping timeout: 264 seconds) 04.22.04 Join zz_TheSphinX^ [0] (~briehl@p5B32210F.dip.t-dialin.net) 04.25.33 Quit TheSphin_ (Ping timeout: 245 seconds) 04.28.47 Join soap [0] (~soap@rockbox/staff/soap) 04.29.15 Quit CaptainKewl (Quit: ( www.nnscript.com :: NoNameScript 4.22 :: www.esnation.com )) 04.48.01 Quit Totalled (Quit: PETTAN PETTAN, TSURUPETTAN!) 04.48.11 Join Totalled [0] (~Totalled@199.58.84.4) 04.55.33 Join pixelma_ [0] (pixelma@rockbox/staff/pixelma) 04.55.41 Quit pixelma (Disconnected by services) 04.56.47 Quit amiconn (Disconnected by services) 04.56.48 Join amiconn_ [0] (amiconn@rockbox/developer/amiconn) 04.56.52 Nick amiconn_ is now known as amiconn (amiconn@rockbox/developer/amiconn) 05.01.28 Join Rower85 [0] (husvagn@v-413-alfarv-90.bitnet.nu) 05.11.14 *** Saving seen data "./dancer.seen" 05.23.32 Join sinthetek [0] (~sinthetek@cpe-071-071-080-056.triad.res.rr.com) 05.23.32 Quit sinthetek (Changing host) 05.23.32 Join sinthetek [0] (~sinthetek@unaffiliated/sinthetek) 05.31.07 Quit TheSeven (Disconnected by services) 05.31.17 Join [7] [0] (~quassel@rockbox/developer/TheSeven) 06.06.45 Join Unhelpful [0] (~quassel@rockbox/developer/Unhelpful) 06.07.27 Quit Unhelpful (Read error: Connection reset by peer) 06.23.28 Join amayer [0] (~amayer@h110.183.123.208.dynamic.ip.windstream.net) 06.33.56 Quit dfkt (Quit: -= SysReset 2.55=- Sic gorgiamus allos subjectatos nunc.) 06.34.55 Quit pedro_angelo (Remote host closed the connection) 06.36.23 Join Unhelpful [0] (~quassel@rockbox/developer/Unhelpful) 06.37.43 Join factor [0] (~factor@r74-195-182-168.msk1cmtc01.mskgok.ok.dh.suddenlink.net) 06.40.44 Quit Unhelpful (Remote host closed the connection) 06.48.29 Join Unhelpful [0] (~quassel@rockbox/developer/Unhelpful) 06.58.30 Part amayer 07.11.17 *** Saving seen data "./dancer.seen" 07.27.50 Nick pixelma_ is now known as pixelma (pixelma@rockbox/staff/pixelma) 07.33.15 Join Buschel [0] (~chatzilla@p5790583C.dip.t-dialin.net) 07.34.56 Join mortalis [0] (~mortalis@195.34.194.126.kalibroao.ru) 07.38.28 Quit sinthetek (Ping timeout: 245 seconds) 07.43.20 Quit GodEater (Remote host closed the connection) 07.47.06 Quit Buschel (Ping timeout: 245 seconds) 07.51.59 Join GodEater [0] (~bibble@5ad61f7a.bb.sky.com) 07.52.00 Quit GodEater (Changing host) 07.52.00 Join GodEater [0] (~bibble@rockbox/staff/GodEater) 07.56.18 Join sinthetek [0] (~sinthetek@cpe-071-071-080-056.triad.res.rr.com) 07.56.18 Quit sinthetek (Changing host) 07.56.18 Join sinthetek [0] (~sinthetek@unaffiliated/sinthetek) 08.08.00 Join Zagor [0] (~bjst@sestofw01.enea.se) 08.08.00 Quit Zagor (Changing host) 08.08.00 Join Zagor [242] (~bjst@rockbox/developer/Zagor) 08.11.13 # wodz (logs): vertical spacing is only for touch targets 08.27.55 Join Buschel [0] (~chatzilla@p5790583C.dip.t-dialin.net) 08.42.46 Join ender` [0] (krneki@foo.eternallybored.org) 08.54.32 Quit Buschel (Quit: ChatZilla 0.9.88.2 [Firefox 14.0.1/20120713134347]) 08.54.58 Join bertrik [0] (~quassel@rockbox/developer/bertrik) 09.03.18 Join einhirn [0] (~Miranda@bsod.rz.tu-clausthal.de) 09.10.50 Quit bertrik (Remote host closed the connection) 09.11.19 *** Saving seen data "./dancer.seen" 09.34.52 Join LinusN [0] (~linus@giant.haxx.se) 09.35.47 Join pamaury [0] (~quassel@163.5.220.237) 09.35.50 Quit pamaury (Changing host) 09.35.50 Join pamaury [0] (~quassel@rockbox/developer/pamaury) 09.42.35 Quit archels (Ping timeout: 252 seconds) 09.46.09 Join TheLemonMan [0] (~LemonBoy@unaffiliated/thelemonman) 09.52.21 Join archels [0] (~foo@sascha.esrac.ele.tue.nl) 09.54.40 Quit Scromple (Quit: Leaving) 10.00.30 Join crose [0] (~John@lec67-3-82-242-207-47.fbx.proxad.net) 10.00.39 # we definitely have a problem with battery bench 10.00.45 # it does not flush the results to the disk 10.01.00 # so if the device shutdown because of not enough power, you loose all the results 10.05.30 # hmm strange 10.06.32 # it open/closes the file each time, and close is supposed to fsync() so the data should be written to the disk 10.08.11 # ah but it only flushes when the buffer is full, which is a bit extreme 10.08.55 Join wodz [0] (~wodz@89-76-32-53.dynamic.chello.pl) 10.08.55 Quit Bagder (Read error: Connection reset by peer) 10.09.11 # pamaury: any progress with rk27xx usb? 10.09.38 Join Bagder [241] (~daniel@rockbox/developer/bagder) 10.09.52 # I didn't had time yesterday, I had to charge the device and then I was to tired. I'll wait until tonight but I don't have the usb analyzer at end now 10.13.26 Quit scorche|sh (Ping timeout: 246 seconds) 10.14.18 # does it sound wrong to write the battery bench file every minute ? 10.15.06 # pamaury: on hdd targets for sure it is wrong 10.15.32 # but hdd targets have storage idle notity and all use that to write the result when needed 10.15.41 # *already 10.16.07 # it sounds wrong that the plugin could storage 16h of results and loose everything because of a power failure ! 10.16.12 # *store 10.16.55 # pamaury: Your symptoms suggest that you have set too low critical battery voltage. Looking at code 3630 looks reasonable so maybe the measured voltage is off? 10.17.07 # I lowered the value for the bench 10.17.28 # the usb stack automagically claims and handles the EP0, right ? 10.17.47 # you can't claim EP0 10.17.51 # and consider the fact that the battery benches are always run with music playing *without fitting in the buffer*, the disk is always more or less active 10.18.30 # i mean, i don't need to write an endpoint descriptor for it 10.18.44 # pamaury: I think you are wrong - The benches I made always filled whole buffer 10.19.07 # if your entire album fit into the buffer, that's a bad benchmark 10.19.32 # *fight* *fight* 10.19.37 # :) 10.20.02 # ah, thats what you mean but a few MB of mp3 is definitely much longer then 1minute 10.20.07 # :) 10.20.07 # because your device will never read it more than once for 20h+, whereras on a real usage it would have read a new album every hour 10.20.43 # ok, so every 10 minutes then 10.21.02 # I thought you are saying that buffer is never fully filled when running battery_bench 10.21.53 # can't it be done like on hdd targets so on rebuffer? 10.22.02 # no, I said that the battery bench protocol is to run an album in a loop but such that the entire album is too big for the buffer so that it has to rebuffer regularly 10.22.26 # non hdd target don't have an idle storage callback afaik 10.23.07 # because flash read/writes are cheap 10.23.19 # They don't? 10.24.42 # or they might and my sd driver is buggy because it never calls it 10.26.33 # sd drivers seem to call call_storage_idle_notifys() 10.29.22 # well it's the mmc driver in this case 10.29.47 # which one? 10.30.11 # sdmmc-imx233, it don't call idle notity for mmc 10.31.33 Join scorche|sh [0] (~scorche@squisch.net) 10.32.05 # I think that's a bug then 10.32.55 # Although there might be flaws in the entire idle callback system, since on lowmem/flash they might be called more often than is useful I suspect 10.42.09 # Hmm actions atj213x family of SoCs seems interesting to attack :-) mips 4k core. 10.42.34 # Has anyone ever thought about porting to OMAP? 10.45.43 # you do 10.45.46 # wodz: is it documented ? which mp3 use that ? 10.45.46 # archels: are there mp3 players with it ? 10.46.00 # gevaerts: that's right, then my mistake, the bug is my fault :) 10.47.51 # pamaury: I'm going to develop my own platform in a few months' time, still debating which architecture to use. 10.48.10 # pamaury: iriver e150 among others. There is 'product datasheet' floating which doesn't go in much details but gives overall overview 10.48.34 # iirc, the actions soc are not quite documented in general 10.48.41 # archels: are you going to design dap? 10.50.05 # wodz: it's going to be a wearable device that can record, play and synthesize audio 10.50.32 # hmm there are atj2137n devices running linux. The question is how hard would be to get sources. 10.50.42 # Did some prototying with AVR32, but not enough processing power, really. 10.51.23 # archels: Look at imx233 - it is quite powerfull, quite cheap, available in tqfp package and supported in rockbox 10.51.57 # the only disadvantage is the ddr memory 10.53.48 # thanks, I will check it out 10.55.25 # archels: Are you going to design the PCB or you want to use something out of the shelf? 10.56.39 # custom PCB and all 10.57.04 # Is it going to be openhardware? 10.57.05 # planning on having the Chinese assemble it, so not too concerned about packages either 10.57.08 # certainly 10.57.28 # l/redraw 10.57.50 # sorry 10.59.00 Quit scorche|sh (Ping timeout: 248 seconds) 10.59.01 # I was thinking about designing 'reference rockbox openhardware dap' while learning new EDA software at work. I was thinking about imx233 + ddr + nokia 6100 lcd 11.00.48 Join scorche|sh [0] (~scorche@squisch.net) 11.03.18 # wodz: there's the mini2440 board :-) 11.03.33 # doesn't give much room for EDA learning though 11.07.00 Quit mc2739 (Ping timeout: 272 seconds) 11.08.22 Join mc2739 [0] (~mc2739@71.20.87.137) 11.08.22 Quit mc2739 (Changing host) 11.08.22 Join mc2739 [0] (~mc2739@rockbox/developer/mc2739) 11.10.32 Quit scorche|sh (Ping timeout: 245 seconds) 11.11.13 Join scorche|sh [0] (~scorche@squisch.net) 11.11.20 *** Saving seen data "./dancer.seen" 11.11.42 Quit wodz (Quit: Leaving) 11.19.09 Quit scorche|sh (Ping timeout: 265 seconds) 11.21.04 Join scorche|sh [0] (~scorche@squisch.net) 11.32.31 Quit scorche|sh (Ping timeout: 245 seconds) 11.32.57 Quit crose (Read error: Operation timed out) 11.34.29 Join crose [0] (~John@lec67-3-82-242-207-47.fbx.proxad.net) 11.42.21 Join scorche|sh [0] (~scorche@squisch.net) 12.02.07 Join Gallomimia [0] (~Gallo@d173-180-137-223.bchsia.telus.net) 12.04.50 # [7]: re: last night's nano2g/usb talk - i haven't touched my n2g in a while, and haven't had any issues mounting it (before the usb driver got changed and no longer working), i only have issues with my ipod classic 2g - it sometimes doesn't mount at all on windows while running rb (so i use emcore+emcorefs to transer files, and it's reliable but somehow slow) 12.15.35 # <[7]> user890104: did you ever see umsboot fail to mount on a nano2g, except for the usual ehci shit? 12.28.20 Join perrikwp_ [0] (~quassel@cpe-024-163-024-033.triad.res.rr.com) 12.30.16 # how do i prevent the usb storage driver to start when i plug the cable ? 12.31.16 Quit perrikwp (Ping timeout: 248 seconds) 12.33.24 # press any button 12.33.40 Quit linuxstb (Quit: This computer has gone to sleep) 12.35.21 Join linuxstb [0] (~linuxstb@host86-136-64-97.range86-136.btcentralplus.com) 12.35.23 # oh, and does logf log to disk or keeps everything in ram ? 12.36.19 # it used to do both (disk dumping required manual interaction), but now with the new logging system i dont know 12.40.28 Join wodz [0] (~wodz@iwl138.internetdsl.tpnet.pl) 12.57.12 Join Thra11 [0] (~thrall@87.115.73.64) 13.03.27 Quit pamaury (Ping timeout: 245 seconds) 13.11.22 *** Saving seen data "./dancer.seen" 13.20.38 Quit perrikwp_ (Read error: Connection reset by peer) 13.22.05 Join perrikwp [0] (~quassel@cpe-024-163-024-033.triad.res.rr.com) 13.43.39 Part mortalis ("Leaving") 13.45.56 Quit ender` (Ping timeout: 244 seconds) 13.49.33 Join pamaury [0] (~quassel@163.5.220.237) 13.49.34 Quit pamaury (Changing host) 13.49.34 Join pamaury [0] (~quassel@rockbox/developer/pamaury) 13.52.16 Quit linuxstb (Quit: This computer has gone to sleep) 13.59.37 Join mortalis [0] (~mortalis@195.34.194.126.kalibroao.ru) 14.01.32 # [7]: i remember it failing a couple of times, mostly on linux (inside a vm), but i don't know what caused it 14.02.03 # i can make usb traffic dumps of a n2g and a classic in various modes, if that can help 14.09.21 Join linuxstb [0] (~linuxstb@host86-136-64-97.range86-136.btcentralplus.com) 14.29.12 Quit factor (Quit: Leaving) 14.32.14 Quit Thra11 (Ping timeout: 268 seconds) 14.33.13 Join Thra11 [0] (~thrall@118.56.113.87.dyn.plus.net) 14.40.34 Quit [Saint] (Remote host closed the connection) 14.40.36 Quit maraz (Remote host closed the connection) 14.41.52 Join maraz [0] (maraz@kapsi.fi) 14.41.53 Quit Gallomimia (Quit: Gallomimia) 14.42.08 Join [Saint] [0] (~saint@rockbox/user/saint) 14.50.15 Quit Totalled (Quit: PETTAN PETTAN, TSURUPETTAN!) 14.50.44 Join Totalled [0] (~Totalled@c-98-245-9-211.hsd1.co.comcast.net) 14.54.36 Join amayer_ [0] (~alex@mail.weberadvertising.com) 15.11.23 *** Saving seen data "./dancer.seen" 15.19.56 Join t0rc [0] (~t0rc@unaffiliated/t0rc/x-5233201) 15.20.27 Quit mortalis (Quit: Leaving) 15.31.44 Join Thra11_ [0] (~thrall@87.115.69.227) 15.33.59 Quit Thra11 (Ping timeout: 246 seconds) 15.34.58 Part t0rc ("WeeChat 0.3.8") 15.44.09 Join gregsparc [0] (~glim@fw1.damballa.com) 15.50.27 Quit Thra11_ (Ping timeout: 244 seconds) 15.51.03 Join Thra11 [0] (~thrall@84.93.183.182) 16.08.55 Quit kevku (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 16.13.30 Quit Thra11 (Read error: Operation timed out) 16.13.43 Join kevku [0] (x@indeed.tastes.like.everything.mm.am) 16.15.10 Join lebellium [0] (~chatzilla@i02m-212-194-176-149.d4.club-internet.fr) 16.24.15 Join Thra11 [0] (~thrall@87.115.76.6) 16.29.21 Join Thra11_ [0] (~thrall@87.114.155.131) 16.31.49 Quit Thra11 (Ping timeout: 244 seconds) 16.32.15 Quit lebellium (Read error: Connection reset by peer) 16.32.44 Join lebellium [0] (~chatzilla@i02m-212-194-176-149.d4.club-internet.fr) 16.44.42 # amayer_, you there? 16.44.54 # spyroboy: yeah whats up/ 16.45.06 # your ratio pleases me :) 16.46.14 # spyroboy: *points to #rockbox-community* 16.52.56 Join eckoit [0] (~ryan@50.65.10.24) 16.54.32 Join peteski [0] (93722cc8@gateway/web/freenode/ip.147.114.44.200) 16.54.37 # Is this thing on? 16.54.47 # hrm, if i have 2 interfaces in the same config can i push both the descriptors at the same time ? 16.55.00 # peteski: no 16.55.05 Part peteski 16.57.13 Join joey22 [0] (~joe@99.32.61.254) 16.59.59 Part joey22 17.08.03 Quit Zagor (Quit: Clint excited) 17.11.26 *** Saving seen data "./dancer.seen" 17.15.47 # gevaerts: could you now enable LCD_FLIP on the recorders again? I find the choice of feature a bit weird, even if it is seldom used on these things but it's long existing. I'll admit that I just came back from holiday, read some logs and don't have the "full picture" yet 17.16.56 # pixelma: I didn't actually disable LCD_FLIP. That commit just fixes some code that assumes it's always there 17.17.15 # I wasn't going to disable actual features without talking to people who use the thing :) 17.18.06 Join lebellium_ [0] (~chatzilla@i02m-212-194-176-149.d4.club-internet.fr) 17.19.08 Join lebellium__ [0] (~chatzilla@i02m-212-194-176-149.d4.club-internet.fr) 17.19.11 Quit lebellium (Ping timeout: 252 seconds) 17.19.12 Nick lebellium__ is now known as lebellium (~chatzilla@i02m-212-194-176-149.d4.club-internet.fr) 17.21.11 # thats interesting - tool to modify atj213x firmware images contains some drivers in form of statically linked .elf files 17.22.44 # drivers of what ? 17.22.51 Quit lebellium_ (Ping timeout: 252 seconds) 17.23.11 # TheLemonMan: what do you mean ? 17.24.02 # fm, keys, lcd block, sensor (digital camera block I guess) 17.26.02 # gevaerts: ah ok, thanks 17.26.07 Join y4n [0] (~y4n@unaffiliated/y4ndexx) 17.27.40 # pamaury: the driver im implementing should expose a single configuration with 2/3 interfaces, current drivers don't show how to do so as they only use 1 config. I tried pushing the second descriptor after the first but i managed to corrupt the memory somehow 17.30.43 # hrm, lsusb reveals that somehow some trailing bytes get corrupted too 17.45.30 Quit eckoit (Quit: eckoit) 17.46.48 Quit Unhelpful (Ping timeout: 240 seconds) 17.50.34 # wodz: The current problem with the recorder build is not that it's lowmem 17.51.47 # It's the .ajz limit for the OF loader. The OF loader refuses to load an .ajz larger than 200 KiB on Recorder v1 and Player (on the other 4 targets the limit is 400 KiB) 17.52.24 # We're already building compressed (self-extracting) firmware files for a while to circumvent that limit. Now even the compressed one hit the limit.. 17.52.42 # TheLemonMan: I don't understand, when you send the config descriptor you simply send config_desc and next all the interface descriptors; just make sure that the wTotalSize of the config desc is correct 17.53.16 # wodz: but you don't have the documentation for the hardware otherwise ? 17.53.22 # The solution is technically easy, but quite some work to get tested: We need a bootloader which in turn loads the main binary 17.53.43 # * amiconn should try to get that done before release 17.54.02 # pamaury: oh, so the config wTotalSize includes the interface struct sizes too ? 17.54.14 # sure, just look at our code for example 17.54.15 # One problem is that while I can test on Rec v1, Player, Ondio FM and Ondio SP, I cannot test on Rec V2 or FM. 17.55.43 Quit einhirn (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org) 17.56.51 Quit amayer_ (Quit: going ~/) 18.01.11 Quit wodz (Quit: Leaving) 18.06.10 Quit archels (Ping timeout: 256 seconds) 18.15.41 Join archels [0] (~foo@sascha.esrac.ele.tue.nl) 18.23.11 Join Topy44 [0] (~Topy44@f048041094.adsl.alicedsl.de) 18.29.40 # pamaury: mind checking some code? 18.31.26 Join n1s_web [0] (~5ae0bbbe@www.haxx.se) 18.33.45 Quit funman (Read error: Operation timed out) 18.35.12 Join funman [0] (~fun@rockbox/developer/funman) 18.35.40 Join Thra11 [0] (~thrall@146.90.131.40) 18.36.51 # is fmradio supposed to play in msc mode 18.36.52 # ? 18.37.30 # I know it's not stopped 18.38.24 Quit Thra11_ (Ping timeout: 244 seconds) 18.39.00 # it does keep playing on the fuze at least, i was a bit surprised but i guess it makes sense 18.42.09 Join WalkGood [0] (~4@unaffiliated/walkgood) 18.42.24 Join mortalis [0] (~mortalis@77.108.98.177) 18.46.51 # do we keep track of which RC builds are tested? 18.55.15 Quit kugel (Remote host closed the connection) 19.00.21 Join kugel [0] (~kugel@141.45.176.104) 19.00.22 Quit kugel (Changing host) 19.00.22 Join kugel [0] (~kugel@rockbox/developer/kugel) 19.03.43 Join bertrik [0] (~quassel@rockbox/developer/bertrik) 19.05.52 Join bluebrother [0] (~dom@rockbox/developer/bluebrother) 19.08.52 Quit bluebrother^ (Ping timeout: 245 seconds) 19.08.58 Quit fs-bluebot (Ping timeout: 272 seconds) 19.10.26 Join fs-bluebot [0] (~fs-bluebo@g226069060.adsl.alicedsl.de) 19.11.29 *** Saving seen data "./dancer.seen" 19.18.18 Quit TheLemonMan (Ping timeout: 246 seconds) 19.23.40 # n1s_web: it is not stopped, not sure if it's a "bug" ? 19.23.54 # one could say it make sense :) 19.29.17 Quit pamaury (Ping timeout: 245 seconds) 19.30.54 Part LinusN 19.33.19 # FM radio keeping playing in USB mode is on purpose afaik 19.37.55 Quit mikroflops (Ping timeout: 245 seconds) 19.43.06 Join mikroflops [0] (~yogurt@h-34-21.a238.priv.bahnhof.se) 19.43.12 Join Gallomimia [0] (~Gallo@d173-180-137-223.bchsia.telus.net) 19.58.36 Join Strife89 [0] (~Strife89@207.144.201.128) 20.00.31 Join wodz [0] (~wodz@89-76-32-53.dynamic.chello.pl) 20.09.57 Join Buschel [0] (~chatzilla@p5790583C.dip.t-dialin.net) 20.19.51 Part WalkGood 20.28.06 # How do I amend a git commit message? 20.28.30 # git commit --amend ? 20.28.35 # ta 20.28.43 # That amends the most recent one I assume? 20.29.00 # yes 20.29.14 # great, thanks 20.30.11 # git rebase -i can do a lot more like rewording older commits, change order etc. 20.30.32 # Ta 20.30.58 # Although this time, I think I only typo'd the authors name in the last one :) 20.32.29 # and I guess you know that you shouldn't amend commit which is already pushed 20.33.06 # yep 20.33.10 Part gregsparc 20.34.46 Join pamaury [0] (~quassel@vit94-1-82-67-248-70.fbx.proxad.net) 20.34.46 Quit pamaury (Changing host) 20.34.46 Join pamaury [0] (~quassel@rockbox/developer/pamaury) 20.36.56 # Commit 27d0065 in rockbox by 03Alex Parker: FS#12734 by Dario Castellarin - update Italian translation. 20.37.04 # Commit bbcf4a2 in rockbox by 03Alex Parker: FS#12736 by Thiago Kenji Okada - update Brazilian Portuguese translation 20.37.04 # Commit cb94d8d in rockbox by 03Alex Parker: FS#12739 by Peter Lecký - update Slovak translation. 20.37.04 # Commit 0f29bfc in rockbox by 03Alex Parker: FS#12737 by Jonas Häggqvist - update Danish translation. 20.37.04 DBUG Enqueued KICK CIA-16 20.37.04 # Commit 60aeff6 in rockbox by 03Alex Parker: Add authors of last few translations to CREDITS as required. 20.37.05 # Commit 9279de0 in rockbox by 03Alex Parker: FS#12740 by Anton Veretenenko - update Russian translation. 20.37.05 *** Alert Mode level 1 20.37.05 # Commit 7196023 in rockbox by 03Alex Parker: FS#12741 by Francisco Vila - update Spanish translation. 20.38.21 # wow, thats quite a bunch 20.38.32 # yeah, we got a few already, which is nice 20.39.20 # 60aeff6 build result: All green 20.40.16 # fs#12743 is scary 20.40.18 # http://www.rockbox.org/tracker/task/12743 3'Data Abort' on USB connection (bugs, unconfirmed) 20.43.01 Join eckoit [0] (~ryan@50.65.10.24) 20.44.28 # amiconn, pixelma, bluebrother, other German speakers: We've had three people submit translations for 3.12 (FS#12735, FS#12742 and FS#12744) - if you would like to look/do your own translation in the next week or so that would be great, if not I'll compare those three and commit that. Cheers :) 20.44.29 # http://www.rockbox.org/tracker/task/12735 3Updated German Translation (patches, unconfirmed) 20.44.29 # http://www.rockbox.org/tracker/task/12742 3German translation (patches, unconfirmed) 20.44.30 # http://www.rockbox.org/tracker/task/12744 3German translation update (patches, unconfirmed) 20.47.06 *** Alert Mode OFF 20.48.47 Quit eckoit (Quit: eckoit) 20.55.01 # Hmm, what is the 3.12 release timeframe? 20.55.25 # nm 20.55.29 Join benedikt93 [0] (~benedikt9@unaffiliated/benedikt93) 20.55.35 Ctcp Ignored 1 channel CTCP requests in 0 seconds at the last flood 20.55.35 # * amiconn should read mails before asking :) 20.58.54 Join lebellium_ [0] (~chatzilla@i02m-212-194-176-149.d4.club-internet.fr) 20.59.52 Join eckoit [0] (~ryan@96.53.108.182) 21.00.07 Join lebellium__ [0] (~chatzilla@i02m-212-194-176-149.d4.club-internet.fr) 21.00.17 Quit lebellium (Ping timeout: 252 seconds) 21.00.21 Quit n1s_web (Quit: CGI:IRC) 21.00.22 Nick lebellium__ is now known as lebellium (~chatzilla@i02m-212-194-176-149.d4.club-internet.fr) 21.03.48 Quit lebellium_ (Ping timeout: 268 seconds) 21.11.19 Join ender` [0] (krneki@foo.eternallybored.org) 21.11.32 *** Saving seen data "./dancer.seen" 21.19.59 Quit Buschel (Quit: ChatZilla 0.9.88.2 [Firefox 14.0.1/20120713134347]) 21.21.31 Join eckoit_ [0] (~ryan@h64-42-210-161.gtconnect.net) 21.22.56 Quit eckoit (Read error: Connection reset by peer) 21.22.57 Nick eckoit_ is now known as eckoit (~ryan@h64-42-210-161.gtconnect.net) 21.28.32 Join pedro_angelo [0] (~pedro_ang@201-29-195-109.user.veloxzone.com.br) 21.31.57 Quit y4n (Quit: We're fucking 3LN!) 21.44.39 Join dfkt [0] (dfkt@unaffiliated/dfkt) 22.02.49 DEBUG EOF from server (Connection timed out) (snapshot: netstuff.c line 545) 22.02.49 *** Cleanup 22.02.49 *** Cleanup 22.02.49 *** Saving seen data "./dancer.seen" 22.02.49 *** Exit 22.02.52 *** Started Dancer V4.16 22.02.52 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.02.52 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.02.52 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.02.52 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.02.52 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.02.52 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.02.52 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.02.52 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.02.52 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.02.52 *** Cleanup 22.02.52 *** Cleanup 22.02.52 *** No seen item changed, no save performed. 22.02.52 *** Exit 22.04.32 *** Started Dancer V4.16 22.04.32 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.04.32 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.04.32 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.04.32 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.04.32 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.04.32 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.04.32 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.04.32 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.04.32 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.04.32 *** Cleanup 22.04.32 *** Cleanup 22.04.32 *** No seen item changed, no save performed. 22.04.32 *** Exit 22.06.19 *** Started Dancer V4.16 22.06.19 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.06.19 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.06.19 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.06.19 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.06.19 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.06.19 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.06.19 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.06.19 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.06.19 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.06.19 *** Cleanup 22.06.19 *** Cleanup 22.06.19 *** No seen item changed, no save performed. 22.06.19 *** Exit 22.08.01 *** Started Dancer V4.16 22.08.01 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.08.01 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.08.01 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.08.01 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.08.01 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.08.01 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.08.01 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.08.01 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.08.01 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.08.01 *** Cleanup 22.08.01 *** Cleanup 22.08.01 *** No seen item changed, no save performed. 22.08.01 *** Exit 22.09.40 *** Started Dancer V4.16 22.09.40 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.09.40 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.09.40 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.09.40 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.09.40 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.09.40 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.09.40 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.09.40 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.09.40 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.09.40 *** Cleanup 22.09.40 *** Cleanup 22.09.40 *** No seen item changed, no save performed. 22.09.40 *** Exit 22.11.27 *** Started Dancer V4.16 22.11.27 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.11.27 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.11.27 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.11.27 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.11.27 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.11.27 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.11.27 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.11.27 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.11.27 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.11.27 *** Cleanup 22.11.27 *** Cleanup 22.11.27 *** No seen item changed, no save performed. 22.11.27 *** Exit 22.13.09 *** Started Dancer V4.16 22.13.09 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.13.09 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.13.09 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.13.09 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.13.09 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.13.09 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.13.09 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.13.09 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.13.09 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.13.09 *** Cleanup 22.13.09 *** Cleanup 22.13.09 *** No seen item changed, no save performed. 22.13.09 *** Exit 22.14.48 *** Started Dancer V4.16 22.14.48 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.14.48 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.14.48 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.14.48 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.14.48 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.14.48 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.14.48 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.14.48 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.14.48 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.14.48 *** Cleanup 22.14.48 *** Cleanup 22.14.48 *** No seen item changed, no save performed. 22.14.48 *** Exit 22.16.35 *** Started Dancer V4.16 22.16.35 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.16.35 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.16.35 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.16.35 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.16.35 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.16.35 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.16.35 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.16.35 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.16.35 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.16.35 *** Cleanup 22.16.35 *** Cleanup 22.16.35 *** No seen item changed, no save performed. 22.16.35 *** Exit 22.18.17 *** Started Dancer V4.16 22.18.17 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.18.17 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.18.17 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.18.17 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.18.17 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.18.17 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.18.17 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.18.17 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.18.17 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.18.17 *** Cleanup 22.18.17 *** Cleanup 22.18.17 *** No seen item changed, no save performed. 22.18.17 *** Exit 22.19.56 *** Started Dancer V4.16 22.19.56 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.19.56 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.19.56 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.19.56 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.19.56 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.19.56 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.19.56 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.19.56 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.19.56 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.19.56 *** Cleanup 22.19.56 *** Cleanup 22.19.56 *** No seen item changed, no save performed. 22.19.56 *** Exit 22.21.43 *** Started Dancer V4.16 22.21.43 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.21.43 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.21.43 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.21.43 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.21.43 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.21.43 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.21.43 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.21.43 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.21.43 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.21.43 *** Cleanup 22.21.43 *** Cleanup 22.21.43 *** No seen item changed, no save performed. 22.21.43 *** Exit 22.23.25 *** Started Dancer V4.16 22.23.25 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.23.25 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.23.25 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.23.25 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.23.25 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.23.25 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.23.25 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.23.25 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.23.25 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.23.25 *** Cleanup 22.23.25 *** Cleanup 22.23.25 *** No seen item changed, no save performed. 22.23.25 *** Exit 22.25.05 *** Started Dancer V4.16 22.25.05 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.25.05 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.25.05 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.25.05 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.25.05 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.25.05 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.25.05 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.25.05 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.25.05 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.25.05 *** Cleanup 22.25.05 *** Cleanup 22.25.05 *** No seen item changed, no save performed. 22.25.05 *** Exit 22.26.52 *** Started Dancer V4.16 22.26.52 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.26.52 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.26.52 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.26.52 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.26.52 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.26.52 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.26.52 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.26.52 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.26.52 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.26.52 *** Cleanup 22.26.52 *** Cleanup 22.26.52 *** No seen item changed, no save performed. 22.26.52 *** Exit 22.28.34 *** Started Dancer V4.16 22.28.34 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.28.34 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.28.34 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.28.34 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.28.34 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.28.34 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.28.34 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.28.34 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.28.34 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.28.34 *** Cleanup 22.28.34 *** Cleanup 22.28.34 *** No seen item changed, no save performed. 22.28.34 *** Exit 22.30.13 *** Started Dancer V4.16 22.30.13 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.30.13 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.30.13 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.30.13 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.30.13 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.30.13 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.30.13 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.30.13 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.30.13 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.30.13 *** Cleanup 22.30.13 *** Cleanup 22.30.13 *** No seen item changed, no save performed. 22.30.13 *** Exit 22.32.00 *** Started Dancer V4.16 22.32.00 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.32.00 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.32.00 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.32.00 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.32.00 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.32.00 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.32.00 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.32.00 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.32.00 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.32.00 *** Cleanup 22.32.00 *** Cleanup 22.32.00 *** No seen item changed, no save performed. 22.32.00 *** Exit 22.33.42 *** Started Dancer V4.16 22.33.42 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.33.42 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.33.42 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.33.42 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.33.42 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.33.42 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.33.42 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.33.42 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.33.42 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.33.42 *** Cleanup 22.33.42 *** Cleanup 22.33.42 *** No seen item changed, no save performed. 22.33.42 *** Exit 22.35.21 *** Started Dancer V4.16 22.35.21 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.35.21 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.35.21 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.35.21 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.35.21 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.35.21 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.35.21 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.35.21 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.35.21 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.35.21 *** Cleanup 22.35.21 *** Cleanup 22.35.21 *** No seen item changed, no save performed. 22.35.21 *** Exit 22.37.08 *** Started Dancer V4.16 22.37.08 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.37.08 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.37.08 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.37.08 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.37.08 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.37.08 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.37.08 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.37.08 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.37.08 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.37.08 *** Cleanup 22.37.08 *** Cleanup 22.37.08 *** No seen item changed, no save performed. 22.37.08 *** Exit 22.38.50 *** Started Dancer V4.16 22.38.50 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.38.50 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.38.50 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.38.50 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.38.50 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.38.50 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.38.50 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.38.50 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.38.50 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.38.50 *** Cleanup 22.38.50 *** Cleanup 22.38.50 *** No seen item changed, no save performed. 22.38.50 *** Exit 22.40.29 *** Started Dancer V4.16 22.40.29 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.40.29 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.40.29 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.40.29 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.40.29 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.40.29 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.40.29 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.40.29 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.40.29 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.40.29 *** Cleanup 22.40.29 *** Cleanup 22.40.29 *** No seen item changed, no save performed. 22.40.29 *** Exit 22.42.16 *** Started Dancer V4.16 22.42.16 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.42.16 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.42.16 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.42.16 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.42.16 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.42.16 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.42.16 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.42.16 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.42.16 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.42.16 *** Cleanup 22.42.16 *** Cleanup 22.42.16 *** No seen item changed, no save performed. 22.42.16 *** Exit 22.43.58 *** Started Dancer V4.16 22.43.58 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.43.58 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.43.58 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.43.58 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.43.58 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.43.58 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.43.58 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.43.58 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.43.58 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.43.58 *** Cleanup 22.43.58 *** Cleanup 22.43.58 *** No seen item changed, no save performed. 22.43.58 *** Exit 22.45.37 *** Started Dancer V4.16 22.45.37 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.45.37 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.45.37 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.45.37 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.45.37 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.45.37 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.45.37 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.45.37 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.45.37 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.45.37 *** Cleanup 22.45.37 *** Cleanup 22.45.37 *** No seen item changed, no save performed. 22.45.37 *** Exit 22.47.24 *** Started Dancer V4.16 22.47.24 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.47.24 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.47.24 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.47.24 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.47.24 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.47.24 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.47.24 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.47.24 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.47.24 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.47.24 *** Cleanup 22.47.24 *** Cleanup 22.47.24 *** No seen item changed, no save performed. 22.47.24 *** Exit 22.49.07 *** Started Dancer V4.16 22.49.07 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.49.07 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.49.07 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.49.07 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.49.07 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.49.07 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.49.07 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.49.07 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.49.07 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.49.07 *** Cleanup 22.49.07 *** Cleanup 22.49.07 *** No seen item changed, no save performed. 22.49.07 *** Exit 22.50.46 *** Started Dancer V4.16 22.50.46 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.50.46 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.50.46 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.50.46 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.50.46 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.50.46 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.50.46 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.50.46 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.50.46 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.50.46 *** Cleanup 22.50.46 *** Cleanup 22.50.46 *** No seen item changed, no save performed. 22.50.46 *** Exit 22.52.33 *** Started Dancer V4.16 22.52.33 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.52.33 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.52.33 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.52.33 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.52.33 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.52.33 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.52.33 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.52.33 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.52.33 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.52.33 *** Cleanup 22.52.33 *** Cleanup 22.52.33 *** No seen item changed, no save performed. 22.52.33 *** Exit 22.54.15 *** Started Dancer V4.16 22.54.15 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.54.15 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.54.15 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.54.15 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.54.15 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.54.15 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.54.15 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.54.15 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.54.15 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.54.15 *** Cleanup 22.54.15 *** Cleanup 22.54.15 *** No seen item changed, no save performed. 22.54.15 *** Exit 22.55.54 *** Started Dancer V4.16 22.55.54 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.55.54 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.55.54 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.55.54 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.55.54 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.55.54 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.55.54 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.55.54 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.55.54 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.55.54 *** Cleanup 22.55.54 *** Cleanup 22.55.54 *** No seen item changed, no save performed. 22.55.54 *** Exit 22.57.41 *** Started Dancer V4.16 22.57.41 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.57.41 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.57.41 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.57.41 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.57.41 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.57.41 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.57.41 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.57.41 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.57.41 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.57.41 *** Cleanup 22.57.41 *** Cleanup 22.57.41 *** No seen item changed, no save performed. 22.57.41 *** Exit 22.59.23 *** Started Dancer V4.16 22.59.23 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.59.23 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.59.23 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.59.23 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.59.23 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.59.23 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.59.23 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.59.23 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 22.59.23 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 22.59.23 *** Cleanup 22.59.23 *** Cleanup 22.59.23 *** No seen item changed, no save performed. 22.59.23 *** Exit 23.01.02 *** Started Dancer V4.16 23.01.02 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.01.02 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.01.02 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.01.02 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.01.02 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.01.02 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.01.02 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.01.02 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.01.02 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.01.02 *** Cleanup 23.01.02 *** Cleanup 23.01.02 *** No seen item changed, no save performed. 23.01.02 *** Exit 23.02.49 *** Started Dancer V4.16 23.02.49 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.02.49 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.02.49 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.02.49 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.02.49 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.02.49 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.02.49 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.02.49 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.02.49 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.02.49 *** Cleanup 23.02.49 *** Cleanup 23.02.49 *** No seen item changed, no save performed. 23.02.49 *** Exit 23.04.31 *** Started Dancer V4.16 23.04.31 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.04.31 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.04.31 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.04.31 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.04.31 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.04.31 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.04.31 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.04.31 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.04.31 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.04.31 *** Cleanup 23.04.31 *** Cleanup 23.04.31 *** No seen item changed, no save performed. 23.04.31 *** Exit 23.06.10 *** Started Dancer V4.16 23.06.10 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.06.10 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.06.10 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.06.10 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.06.10 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.06.10 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.06.10 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.06.10 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.06.10 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.06.10 *** Cleanup 23.06.10 *** Cleanup 23.06.10 *** No seen item changed, no save performed. 23.06.10 *** Exit 23.07.57 *** Started Dancer V4.16 23.07.57 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.07.57 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.07.57 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.07.57 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.07.57 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.07.57 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.07.57 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.07.57 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.07.57 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.07.57 *** Cleanup 23.07.57 *** Cleanup 23.07.57 *** No seen item changed, no save performed. 23.07.57 *** Exit 23.09.39 *** Started Dancer V4.16 23.09.39 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.09.39 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.09.39 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.09.39 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.09.39 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.09.39 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.09.39 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.09.39 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.09.39 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.09.39 *** Cleanup 23.09.39 *** Cleanup 23.09.39 *** No seen item changed, no save performed. 23.09.39 *** Exit 23.11.18 *** Started Dancer V4.16 23.11.18 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.11.18 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.11.18 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.11.18 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.11.18 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.11.18 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.11.18 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.11.18 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.11.18 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.11.18 *** Cleanup 23.11.18 *** Cleanup 23.11.18 *** No seen item changed, no save performed. 23.11.18 *** Exit 23.13.05 *** Started Dancer V4.16 23.13.05 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.13.05 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.13.05 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.13.05 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.13.05 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.13.05 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.13.05 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.13.05 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.13.05 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.13.05 *** Cleanup 23.13.05 *** Cleanup 23.13.05 *** No seen item changed, no save performed. 23.13.05 *** Exit 23.14.47 *** Started Dancer V4.16 23.14.47 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.14.47 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.14.47 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.14.47 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.14.47 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.14.47 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.14.47 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.14.47 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.14.47 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.14.47 *** Cleanup 23.14.47 *** Cleanup 23.14.47 *** No seen item changed, no save performed. 23.14.47 *** Exit 23.16.27 *** Started Dancer V4.16 23.16.27 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.16.27 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.16.27 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.16.27 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.16.27 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.16.27 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.16.27 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.16.27 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.16.27 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.16.27 *** Cleanup 23.16.27 *** Cleanup 23.16.27 *** No seen item changed, no save performed. 23.16.27 *** Exit 23.18.14 *** Started Dancer V4.16 23.18.14 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.18.14 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.18.14 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.18.14 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.18.14 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.18.14 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.18.14 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.18.14 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.18.14 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.18.14 *** Cleanup 23.18.14 *** Cleanup 23.18.14 *** No seen item changed, no save performed. 23.18.14 *** Exit 23.19.56 *** Started Dancer V4.16 23.19.56 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.19.56 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.19.56 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.19.56 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.19.56 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.19.56 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.19.56 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.19.56 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.19.56 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.19.56 *** Cleanup 23.19.56 *** Cleanup 23.19.56 *** No seen item changed, no save performed. 23.19.56 *** Exit 23.21.35 *** Started Dancer V4.16 23.21.35 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.21.35 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.21.35 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.21.35 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.21.35 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.21.35 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.21.35 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.21.35 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.21.35 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.21.35 *** Cleanup 23.21.35 *** Cleanup 23.21.35 *** No seen item changed, no save performed. 23.21.35 *** Exit 23.23.22 *** Started Dancer V4.16 23.23.22 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.23.22 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.23.22 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.23.22 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.23.22 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.23.22 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.23.22 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.23.22 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.23.22 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.23.22 *** Cleanup 23.23.22 *** Cleanup 23.23.22 *** No seen item changed, no save performed. 23.23.22 *** Exit 23.25.04 *** Started Dancer V4.16 23.25.04 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.25.04 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.25.04 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.25.04 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.25.04 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.25.04 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.25.04 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.25.04 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.25.04 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.25.04 *** Cleanup 23.25.04 *** Cleanup 23.25.04 *** No seen item changed, no save performed. 23.25.04 *** Exit 23.26.43 *** Started Dancer V4.16 23.26.43 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.26.43 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.26.43 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.26.43 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.26.43 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.26.43 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.26.43 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.26.43 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.26.43 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.26.43 *** Cleanup 23.26.43 *** Cleanup 23.26.43 *** No seen item changed, no save performed. 23.26.43 *** Exit 23.28.30 *** Started Dancer V4.16 23.28.30 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.28.30 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.28.30 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.28.30 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.28.30 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.28.30 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.28.30 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.28.30 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.28.30 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.28.30 *** Cleanup 23.28.30 *** Cleanup 23.28.30 *** No seen item changed, no save performed. 23.28.30 *** Exit 23.30.12 *** Started Dancer V4.16 23.30.12 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.30.12 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.30.12 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.30.12 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.30.12 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.30.12 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.30.12 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.30.12 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.30.12 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.30.12 *** Cleanup 23.30.12 *** Cleanup 23.30.12 *** No seen item changed, no save performed. 23.30.12 *** Exit 23.31.51 *** Started Dancer V4.16 23.31.51 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.31.51 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.31.51 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.31.51 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.31.51 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.31.51 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.31.51 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.31.51 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.31.51 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.31.51 *** Cleanup 23.31.51 *** Cleanup 23.31.51 *** No seen item changed, no save performed. 23.31.51 *** Exit 23.33.38 *** Started Dancer V4.16 23.33.38 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.33.38 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.33.38 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.33.38 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.33.38 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.33.38 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.33.38 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.33.38 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.33.38 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.33.38 *** Cleanup 23.33.38 *** Cleanup 23.33.38 *** No seen item changed, no save performed. 23.33.38 *** Exit 23.35.20 *** Started Dancer V4.16 23.35.20 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.35.20 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.35.20 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.35.20 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.35.20 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.35.20 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.35.20 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.35.20 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.35.20 *** Unable to connect to irc.freenode.net on port 6667 (tried 8 times) 23.35.20 *** Cleanup 23.35.20 *** Cleanup 23.35.20 *** No seen item changed, no save performed. 23.35.20 *** Exit 23.36.59 *** Started Dancer V4.16 23.36.59 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.36.59 DEBUG gethostbyname(2) failed for irc.freenode.net (Success) (snapshot: netstuff.c line 99) 23.36.59 *** Connected to irc.freenode.net on port 6667 23.36.59 *** Logfile for #rockbox started 23.37.28 Mode "logbot_ :+i" by logbot_ 23.37.33 *** Server message 501: 'logbot_ :Unknown MODE flag' 23.37.33 Join logbot_ [0] (~rockbox@giant.haxx.se) 23.37.33 Join factor [0] (~factor@r74-195-182-168.msk1cmtc01.mskgok.ok.dh.suddenlink.net) 23.37.33 Join Thra11_ [0] (~thrall@87.115.4.37) 23.37.33 Join perrikwp [0] (~quassel@cpe-024-163-024-033.triad.res.rr.com) 23.37.33 Join dfkt [0] (dfkt@unaffiliated/dfkt) 23.37.33 Join pedro_angelo [0] (~pedro_ang@201-29-195-109.user.veloxzone.com.br) 23.37.33 Join eckoit [0] (~ryan@h64-42-210-161.gtconnect.net) 23.37.33 Join ender` [0] (krneki@foo.eternallybored.org) 23.37.33 Join lebellium [0] (~chatzilla@i02m-212-194-176-149.d4.club-internet.fr) 23.37.33 Join pamaury [0] (~quassel@rockbox/developer/pamaury) 23.37.33 Join Strife89 [0] (~Strife89@207.144.201.128) 23.37.33 Join Gallomimia [0] (~Gallo@d173-180-137-223.bchsia.telus.net) 23.37.33 Join mikroflops [0] (~yogurt@h-34-21.a238.priv.bahnhof.se) 23.37.33 Join fs-bluebot [0] (~fs-bluebo@g226069060.adsl.alicedsl.de) 23.37.33 Join bluebrother [0] (~dom@rockbox/developer/bluebrother) 23.37.33 Join kugel [0] (~kugel@rockbox/developer/kugel) 23.37.33 Join funman [0] (~fun@rockbox/developer/funman) 23.37.33 Join Topy44 [0] (~Topy44@f048041094.adsl.alicedsl.de) 23.37.33 Join archels [0] (~foo@sascha.esrac.ele.tue.nl) 23.37.33 Join kevku [0] (x@indeed.tastes.like.everything.mm.am) 23.37.33 Join Totalled [0] (~Totalled@c-98-245-9-211.hsd1.co.comcast.net) 23.37.33 Join [Saint] [0] (~saint@rockbox/user/saint) 23.37.33 Join maraz [0] (maraz@kapsi.fi) 23.37.33 Join linuxstb [0] (~linuxstb@host86-136-64-97.range86-136.btcentralplus.com) 23.37.33 Join scorche|sh [0] (~scorche@squisch.net) 23.37.33 Join mc2739 [0] (~mc2739@rockbox/developer/mc2739) 23.37.33 Join Bagder [241] (~daniel@rockbox/developer/bagder) 23.37.33 Join sinthetek [0] (~sinthetek@unaffiliated/sinthetek) 23.37.33 Join GodEater [0] (~bibble@rockbox/staff/GodEater) 23.37.33 Join [7] [0] (~quassel@rockbox/developer/TheSeven) 23.37.33 Join amiconn [0] (amiconn@rockbox/developer/amiconn) 23.37.33 Join pixelma [0] (pixelma@rockbox/staff/pixelma) 23.37.33 Join soap [0] (~soap@rockbox/staff/soap) 23.37.33 Join zz_TheSphinX^ [0] (~briehl@p5B32210F.dip.t-dialin.net) 23.37.33 Join spyroboy [0] (~spyroboy@tuxhacker/spyroboy) 23.37.33 Join jm_ [0] (jm@epicsol.org) 23.37.33 Join Syconaut [0] (viper@213.114.253.77) 23.37.33 Join mystica555_ [0] (~Mike@71-218-112-221.hlrn.qwest.net) 23.37.33 Join ender| [0] (krneki@foo.eternallybored.org) 23.37.33 Join thegeek_ [0] (~thegeek@171.17.9.46.customer.cdi.no) 23.37.33 Join ps-auxw [0] (~arneb@2001:470:c807:0:1532:4e5f:2ad3:4123) 23.37.33 Join Provel [0] (~Provel@75-132-13-29.dhcp.stls.mo.charter.com) 23.37.33 Join TBCOOL [0] (~tb@c-523671d5.09-42-73746f22.cust.bredbandsbolaget.se) 23.37.33 Join amithkk [0] (u4289@2buntu/writers/amithkk) 23.37.33 Join froggyman [0] (~froggyman@unaffiliated/froggyman) 23.37.33 Join AlexP [0] (~alex@rockbox/staff/AlexP) 23.37.33 Join KiwiCam [0] (~KiwiCAM@101.98.171.48) 23.37.33 Join jordan` [0] (~gromit@posteauge.rsr.lip6.fr) 23.37.33 Join Staphylo [0] (~Staphylo@mareo.fr) 23.37.33 Join scorche [0] (~scorche@174-19-209-63.phnx.qwest.net) 23.37.33 Join ruskie [0] (ruskie@sourcemage/mage/ruskie) 23.37.33 Join guymann [0] (~c@108-237-202-52.lightspeed.wlfrct.sbcglobal.net) 23.37.33 Join Belzebub [0] (~torrentow@dj.from.drumandbass.net.pl) 23.37.33 Join tchan [0] (~tchan@lunar-linux/developer/tchan) 23.37.33 Join Torne [0] (~torne@rockbox/developer/Torne) 23.37.33 Join crwl [0] (~crwlll@88.195.185.103) 23.37.33 Join alexbobp [0] (~alex@capitalthree.pwnz.org) 23.37.33 Join dys [0] (~user@2a01:1e8:e100:8296:21a:4dff:fe4e:273a) 23.37.33 Join yosafbridge [0] (~yosafbrid@li125-242.members.linode.com) 23.37.33 Join Barahir_ [0] (~Barahir@fb08schindler24.anorg.chemie.uni-giessen.de) 23.37.33 Join shamus [0] (~shamus@ip-206-192-195-49.marylandheights.ip.cablemo.net) 23.37.33 Join Galois [0] (djao@efnet-math.org) 23.37.33 Join nosa-j [0] (~m00k@184.76.254.130) 23.37.33 Join GeekShadow [0] (~antoine@100.116.197.77.rev.sfr.net) 23.37.33 Join Xerion [0] (~xerion@5419F5F4.cm-5-2d.dynamic.ziggo.nl) 23.37.33 Join evilnick [0] (~evilnick@rockbox/staff/evilnick) 23.37.33 Join gevaerts [0] (~fg@rockbox/developer/gevaerts) 23.37.33 Join Amqui [0] (~a@d50-99-201-71.abhsia.telus.net) 23.37.33 Join @ChanServ [0] (ChanServ@services.) 23.37.33 Join georgeha1k [0] (~jae@dedicated.jaerhard.com) 23.37.33 Join knittl [0] (~knittl@unaffiliated/knittl) 23.37.33 Join Synergist [0] (~synfn@unaffiliated/synergist) 23.37.33 Join uwe_ [0] (~uwe_@dslb-088-064-209-125.pools.arcor-ip.net) 23.37.33 Join zu [0] (~zu@ks387228.kimsufi.com) 23.37.33 Join Elfish [0] (amba@fuplz.co.cc) 23.37.33 Join Guinness [0] (Slayer@c-68-55-111-159.hsd1.va.comcast.net) 23.37.33 Join eintopf [0] (~eintopf@zzz.strace.org) 23.37.33 Join derf [0] (~derf@fuzzyneural.net) 23.37.33 Join linuxguy3 [0] (~timj@24-148-61-208.c3-0.lem-ubr1.chi-lem.il.cable.rcn.com) 23.37.33 Join rudi_s [0] (~simon@austria125.server4you.de) 23.37.33 Join joe____ [0] (~bob@electronic-thumb.org) 23.37.33 Join uwe_mobile__ [0] (~uwe@static.88-198-8-117.clients.your-server.de) 23.37.33 Join freqmod [0] (~quassel@2001:700:300:2120:5652:ff:fe70:1e36) 23.37.33 Join polemon [0] (mcp@polemon.org) 23.37.33 Join CIA-16 [0] (cia@198.71.88.9) 23.37.33 Join rasher [0] (~rasher@rockbox/developer/rasher) 23.37.33 Join JdGordon [0] (~jonno@rockbox/developer/JdGordon) 23.37.33 Join user890104 [0] (Venci@0.vps.6bez10.info) 23.37.33 Join FOAD [0] (~foad@unaffiliated/foad) 23.37.33 Join pystar89 [0] (~pystar89@ip-92-50-95-15.unitymediagroup.de) 23.37.33 Join ser [0] (~ser@host1.tldp.ibiblio.org) 23.37.33 Join preglow [0] (thomj@rockbox/developer/preglow) 23.37.33 Join nuskool [0] (~nuskool@s.pl0rt.org) 23.37.33 Join Zambezi [0] (Zulu@unaffiliated/zambezi) 23.37.33 Join aevin [0] (eivindsy@unaffiliated/aevin) 23.37.33 Join simabeis [0] (~simabeis@lobmenschen.de) 23.37.33 Join Jack87|Away [0] (Jack87@nasadmin/admin/jack87) 23.37.33 Join dionoea [0] (~dionoea@oyp.chewa.net) 23.37.33 Join bzed [0] (~bzed@devel.recluse.de) 23.37.33 Join ack [0] (~ack@mingbai.org) 23.37.33 Join Slasheri [0] (miipekk@rockbox/developer/Slasheri) 23.37.33 Join nomada [0] (~nomada@irc.consciente.de) 23.37.33 Join Cthulhux [0] (cthulhux@piratenpartei/ni/tux) 23.37.33 Join Esmil [0] (esmil@horus.0x90.dk) 23.37.33 Join ranmachan [0] (ranma@2a01:4f8:130:9321::2) 23.37.33 Join Beta2K [0] (~Beta2K@d24-36-163-88.home1.cgocable.net) 23.37.33 Join n17ikh [0] (~n17ikh@unaffiliated/n17ikh) 23.37.33 Join wtachi [0] (~chat@bloom.wtachi.us) 23.37.33 Join Rondom_ [0] (~rondom@2a01:488:66:1000:b24d:4f2f:0:1) 23.37.33 Join Hadaka [0] (~naked@naked.iki.fi) 23.46.21 Quit Gallomimia (Quit: Gallomimia) 23.47.44 Nick Rondom_ is now known as Rondom (~rondom@2a01:488:66:1000:b24d:4f2f:0:1) 23.48.37 Quit dionoea (Changing host) 23.48.37 Join dionoea [0] (~dionoea@videolan/developer/dionoea) 23.54.37 Join bertrik [0] (~quassel@rockbox/developer/bertrik)