Tuesday, October 23rd, 2012, 00:02 UTC | ||
[00:02:36] | jstenback (jstenback!~jstenback@2620:101:8003:200:224:e8ff:fe39:34c2) has joined #mythtv | |
[00:36:18] | Mousey (Mousey!~r0dent_@ross154.net) has quit (Remote host closed the connection) | |
[00:42:42] | coling (coling!~colin@cpc7-sgyl36-2-0-cust267.18-2.cable.virginmedia.com) has quit (Ping timeout: 264 seconds) | |
[00:43:30] | coling (coling!~colin@cpc7-sgyl36-2-0-cust267.18-2.cable.virginmedia.com) has joined #mythtv | |
[01:00:22] | NightMonkey (NightMonkey!~NightrMon@pdpc/supporter/professional/nightmonkey) has quit (Remote host closed the connection) | |
[01:14:32] | pheld (pheld!~heldal@cl-5.osl-01.no.sixxs.net) has quit (Quit: Leaving.) | |
[01:15:29] | wmcdougall (wmcdougall!~wayne@static-ip-202-90-61-191.watchdog.net.nz) has quit (Ping timeout: 244 seconds) | |
[02:33:28] | wmcdougall (wmcdougall!~wayne@static-ip-202-90-61-191.watchdog.net.nz) has joined #mythtv | |
[02:44:23] | Captain_Murdoch: | dmfrey, works fine here. are you putting the value in quotes in your If-None-Match header? Ie: If-None-Match: "thehashvalue" |
[02:46:12] | Captain_Murdoch: | this is with current master, I can't test 0.26 easily, but nothing has changed in there recently. 0.25 didn't have eTag support I believe, there's no eTag in the response headers on my 0.25 master backend. |
[02:56:16] | zombor (zombor!~zombor__@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[02:56:54] | NightMonkey (NightMonkey!~NightrMon@pdpc/supporter/professional/nightmonkey) has joined #mythtv | |
[03:08:00] | dmfrey: | Captain_Murdoch, it is working for GetUpcomingList, but not GetRecordedList |
[03:08:03] | dmfrey: | it is .26 |
[03:08:12] | dmfrey: | i have some other people testing it out as well |
[03:08:16] | Captain_Murdoch: | odd. works here for me using wget. |
[03:08:31] | dmfrey: | but the process is the same for both |
[03:08:53] | dmfrey: | i didn't try putting quotes, so let me try that, but this was in a test client, not the app |
[03:09:18] | Captain_Murdoch: | yeah, was typing a reply to ask you to test with wget. |
[03:09:51] | dmfrey: | let me try that |
[03:09:55] | dmfrey: | curl ok? |
[03:10:14] | Captain_Murdoch: | yea |
[03:10:15] | Captain_Murdoch: | yeah |
[03:11:30] | Captain_Murdoch: | haven't seen anything yet regarding the quotes, but since the eTag header has them, I provided them with the If-None-Match header and that worked. without the quotes it failed. I also see in the source where it does an exact match between the new eTag header value and the passed-in If-None-Match header value, so looks like we expect the If-None-Match to be in quotes since we set eTag in quotes. |
[03:11:48] | Captain_Murdoch: | "haven't seen anything yet" on the net that is.... |
[03:12:48] | Captain_Murdoch: | just found a doc saying that quotes are required around the value |
[03:14:00] | Captain_Murdoch: | and another page saying the same. |
[03:14:35] | dmfrey: | am i missing anything here? |
[03:14:36] | dmfrey: | curl -H "accept: application/json" -H "If-None-Match: c0b00b352806d3240df95d254a1f69a3408b3c8f" http://192.168.10.200:6544/Dvr/GetRecordedList |
[03:15:13] | Captain_Murdoch: | yeah, put the c0b00b352806d3240df95d254a1f69a3408b3c8f in escaped quotes... curl -H "accept: application/json" -H "If-None-Match: \"c0b00b352806d3240df95d254a1f69a3408b3c8f\"" http://192.168.10.200:6544/Dvr/GetRecordedList |
[03:15:53] | Captain_Murdoch: | the quotes are actually part of the eTag value so they have to be passed back in in the If-None-Match value. |
[03:16:19] | dmfrey: | really? |
[03:16:30] | dmfrey: | i don't think i am storing them that way |
[03:16:37] | dmfrey: | in the db, i mean, in the app |
[03:16:56] | dmfrey: | in fact I know i am not, but it works for GetUpcomingList |
[03:17:39] | Captain_Murdoch: | google for "eTag quotes" or "If-None-Match quotes" (without the quotes here) :) and you'll find a few pages saying that the quotes are required and are part of the value that must be returned. |
[03:17:58] | Captain_Murdoch: | so you intentionally strip quotes from the eTag value? |
[03:18:44] | dmfrey: | i will have to see what is actually coming back |
[03:19:06] | dmfrey: | i was just reading it out when I get a 200 updating the value stored in the db for next use |
[03:22:54] | dmfrey: | strange, i am getting If-None-Match coming back with the etag i send in, but still getting a 200 |
[03:23:12] | Captain_Murdoch: | do you have wget installed? |
[03:23:17] | dmfrey: | yes |
[03:24:04] | Captain_Murdoch: | not sure of the curl equivalent, but wget -S will show you the server headers returned so you can see the eTag header. so run this: wget -S -O /dev/null http://192.168.10.200:6544/Dvr/GetRecordedList |
[03:24:35] | Captain_Murdoch: | that will show you the headers. then run this: wget -S -O /dev/null --header="If-None-Match: \"THEETAGVALUE\"" http://192.168.10.200:6544/Dvr/GetRecordedList |
[03:25:38] | Captain_Murdoch: | and that 2nd run should get you a 304 Not Modified. |
[03:27:29] | dmfrey: | http://pastebin.com/f7b4xRpu |
[03:28:13] | Captain_Murdoch: | did you use the right eTag value? the one you got back was different. |
[03:28:36] | Captain_Murdoch: | retry the wget with the eTag value from the pastebin output. |
[03:28:39] | dmfrey: | here is the whole thing |
[03:28:40] | dmfrey: | http://pastebin.com/qT2dZNCZ |
[03:28:52] | dmfrey: | that is the first call to get it |
[03:28:59] | dmfrey: | the second using the etag value |
[03:30:55] | Captain_Murdoch: | can you save the output to a file and compare the two with diff to see if the output is exactly the same? the eTag is a SHA1 hash of the output data, so it sounds like your data is different each time. |
[03:31:10] | Captain_Murdoch: | what happens if you just run that first wget over and over, do you see the same eTag returned each time? |
[03:32:06] | dmfrey: | let me try |
[03:32:27] | dmfrey: | yes, different every time |
[03:32:56] | dmfrey: | only on GetRecordedList |
[03:32:57] | Captain_Murdoch: | my dev system is inactive now, no recordings going on no jobs, etc.. perhaps you're being hit by changing data. |
[03:33:04] | dmfrey: | GetUpcomingList shows the same |
[03:33:17] | dmfrey: | how would that happen? |
[03:33:23] | dmfrey: | it is recording |
[03:33:28] | dmfrey: | maybe that's it |
[03:33:39] | Captain_Murdoch: | not sure if there's something in there that's updated every second or two or not. |
[03:33:55] | dmfrey: | will have to try it again when it is not |
[03:34:39] | dmfrey: | with that, i am off to bed |
[03:34:41] | dmfrey: | thanks |
[03:34:42] | dmfrey: | later |
[03:34:47] | Captain_Murdoch: | ah, you're getting hit by the filesize updating |
[03:35:26] | Captain_Murdoch: | another reason to have a less-detailed list for primary usage. |
[03:35:48] | dmfrey: | ah, that sounds like it |
[03:36:26] | Captain_Murdoch: | that's the only thing I see in the output that would be changing constantly. |
[03:39:07] | Captain_Murdoch: | have to think about that one. could almost justify a flag to exclude filesize on recordings in progress or set to -1 or something. |
[03:46:56] | Beirdo: | should our libs in master not be 0.27 now? |
[04:11:31] | Beirdo: | OK, the 64-bit one has been upgraded to Qt 4.8.1 |
[04:14:19] | wmcdougall (wmcdougall!~wayne@static-ip-202-90-61-191.watchdog.net.nz) has quit (Ping timeout: 252 seconds) | |
[04:29:37] | wahrhaft (wahrhaft!~quassel@cpe-24-210-70-5.columbus.res.rr.com) has quit (Quit: No Ping reply in 180 seconds.) | |
[04:43:22] | wahrhaft (wahrhaft!~quassel@cpe-24-210-70-5.columbus.res.rr.com) has joined #mythtv | |
[05:58:23] | Goga777 (Goga777!~Goga777@2.95.199.211) has joined #mythtv | |
[06:26:29] | FabriceMG (FabriceMG!~Thunderbi@LCaen-156-54-30-212.w80-11.abo.wanadoo.fr) has joined #mythtv | |
[06:37:12] | tgm4883 (tgm4883!~tgm4883@ubuntu/member/tgm4883) has quit (Ping timeout: 260 seconds) | |
[06:37:41] | tgm4883 (tgm4883!~tgm4883@2001:4968:202:3:20f:eaff:fefc:ba0e) has joined #mythtv | |
[06:37:41] | tgm4883 (tgm4883!~tgm4883@2001:4968:202:3:20f:eaff:fefc:ba0e) has quit (Changing host) | |
[06:37:41] | tgm4883 (tgm4883!~tgm4883@ubuntu/member/tgm4883) has joined #mythtv | |
[06:38:08] | rhpot1991 (rhpot1991!~rhpot1991@ubuntu/member/rhpot1991) has quit (Ping timeout: 260 seconds) | |
[06:38:14] | rhpot1991 (rhpot1991!~rhpot1991@2001:4968:202:3:20f:eaff:fefc:ba0e) has joined #mythtv | |
[06:38:14] | rhpot1991 (rhpot1991!~rhpot1991@2001:4968:202:3:20f:eaff:fefc:ba0e) has quit (Changing host) | |
[06:38:14] | rhpot1991 (rhpot1991!~rhpot1991@ubuntu/member/rhpot1991) has joined #mythtv | |
[06:59:25] | SteveGoodey (SteveGoodey!~steve@host86-160-43-188.range86-160.btcentralplus.com) has joined #mythtv | |
[07:08:28] | rhpot1991 (rhpot1991!~rhpot1991@ubuntu/member/rhpot1991) has quit (Ping timeout: 260 seconds) | |
[07:08:35] | rhpot1991 (rhpot1991!~rhpot1991@2001:4968:202:3:20f:eaff:fefc:ba0e) has joined #mythtv | |
[07:08:35] | rhpot1991 (rhpot1991!~rhpot1991@2001:4968:202:3:20f:eaff:fefc:ba0e) has quit (Changing host) | |
[07:08:35] | rhpot1991 (rhpot1991!~rhpot1991@ubuntu/member/rhpot1991) has joined #mythtv | |
[07:11:59] | northrup (northrup!~jjn@c-98-193-252-184.hsd1.tn.comcast.net) has joined #mythtv | |
[07:14:58] | pheld (pheld!~heldal@cl-5.osl-01.no.sixxs.net) has joined #mythtv | |
[07:43:11] | bas-t (bas-t!~tycho@52484E89.cm-4-1b.dynamic.ziggo.nl) has joined #mythtv | |
[07:48:26] | NightMonkey (NightMonkey!~NightrMon@pdpc/supporter/professional/nightmonkey) has quit (Quit: Body blow! Body blow!) | |
[07:52:11] | FabriceMG (FabriceMG!~Thunderbi@LCaen-156-54-30-212.w80-11.abo.wanadoo.fr) has quit (Quit: FabriceMG) | |
[07:52:33] | FabriceMG (FabriceMG!~Thunderbi@217.112.59.207) has joined #mythtv | |
[08:03:30] | Merlin83b (Merlin83b!~Daniel@2a00:1ee0:3:1337:c3a:b9c5:fdec:8a5a) has joined #mythtv | |
[08:03:41] | Goga777 (Goga777!~Goga777@2.95.199.211) has quit (Remote host closed the connection) | |
[08:05:37] | northrup (northrup!~jjn@c-98-193-252-184.hsd1.tn.comcast.net) has quit (Quit: northrup) | |
[08:18:46] | stichnot (stichnot!~stichnot@adsl-69-110-144-133.dsl.pltn13.pacbell.net) has quit (Ping timeout: 246 seconds) | |
[08:53:44] | Merlin83b (Merlin83b!~Daniel@2a00:1ee0:3:1337:c3a:b9c5:fdec:8a5a) has quit (Read error: Connection reset by peer) | |
[08:57:38] | Merlin83b (Merlin83b!~Daniel@2a00:1ee0:3:1337:f074:3e38:6e6f:3ef2) has joined #mythtv | |
[09:02:01] | Sharky112065 is now known as Sharky-Sleep | |
[09:06:34] | SteveGoodey (SteveGoodey!~steve@host86-160-43-188.range86-160.btcentralplus.com) has quit (Quit: Konversation terminated!) | |
[09:10:23] | Anssi (Anssi!hannulaa@mandriva/developer/anssi) has quit (Remote host closed the connection) | |
[09:11:51] | amessina (amessina!~amessina@2001:470:c1dc:7779:d6be:d9ff:fe8d:7c1e) has quit (Quit: Konversation terminated!) | |
[09:13:13] | jpabq (jpabq!~jpabq@mythtv/developer/jpabq) has quit (Ping timeout: 246 seconds) | |
[09:14:30] | amessina (amessina!~amessina@2001:470:c1dc:7779:d6be:d9ff:fe8d:7c1e) has joined #mythtv | |
[09:18:47] | jpabq (jpabq!~jpabq@mythtv/developer/jpabq) has joined #mythtv | |
[09:40:21] | stichnot (stichnot!~stichnot@adsl-69-110-144-133.dsl.pltn13.pacbell.net) has joined #mythtv | |
[09:46:11] | stichnot (stichnot!~stichnot@adsl-69-110-144-133.dsl.pltn13.pacbell.net) has quit (Ping timeout: 256 seconds) | |
[09:55:10] | joki (joki!~joki@p54861D80.dip.t-dialin.net) has quit (Ping timeout: 245 seconds) | |
[09:55:41] | joki (joki!~joki@p5486416E.dip.t-dialin.net) has joined #mythtv | |
[10:15:04] | Anssi (Anssi!hannulaa@mandriva/developer/anssi) has joined #mythtv | |
[10:29:40] | stuartm: | make distclean needs to clean out all lib versions, right now it just deletes whatever version is in settings.pro, I found libs from 0.24 through 0.26 in my build directory |
[10:39:09] | MythBuild: | build #114 of master-f17–32bit is complete: Failure [4failed compile plugins] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . t/builds/114 blamelist: Stuart Morgan <smorgan@mythtv.org > |
[10:40:39] | MythBuild: | build #28 of master-debian-wheezy-64bit is complete: Failure [4failed compile plugins] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . it/builds/28 blamelist: Stuart Morgan <smorgan@mythtv.org > |
[10:43:15] | MythBuild: | build #4106 of master-linux-32bit is complete: Failure [4failed compile plugins] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . /builds/4106 blamelist: Stuart Morgan <smorgan@mythtv.org > |
[10:47:18] | bas-t (bas-t!~tycho@52484E89.cm-4-1b.dynamic.ziggo.nl) has quit (Quit: Ex-Chat) | |
[10:48:31] | MythBuild: | build #3130 of master-freebsd-64bit is complete: Failure [4failed compile plugins] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . /builds/3130 blamelist: Stuart Morgan <smorgan@mythtv.org > |
[10:56:52] | SteveGoodey (SteveGoodey!~steve@host86-160-43-188.range86-160.btcentralplus.com) has joined #mythtv | |
[11:02:44] | MythBuild: | build #314 of master-linux-64bit-icc is complete: Failure [4failed compile plugins] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . c/builds/314 blamelist: Stuart Morgan <smorgan@mythtv.org > |
[11:24:12] | MythBuild: | build #1538 of master-vista-mingw-32bit is complete: Failure [4failed compile_2] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . /builds/1538 blamelist: Stuart Morgan <smorgan@mythtv.org > |
[11:25:48] | MythBuild: | build #3131 of master-freebsd-64bit is complete: Success [3build successful] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . /builds/3131 |
[11:25:59] | rsiebert (rsiebert!~quassel@e179130008.adsl.alicedsl.de) has joined #mythtv | |
[11:26:41] | MythBuild: | build #115 of master-f17–32bit is complete: Success [3build successful] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . t/builds/115 |
[11:27:21] | MythBuild: | build #4337 of master-linux-64bit is complete: Success [3build successful] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . /builds/4337 |
[11:28:49] | rsiebert_ (rsiebert_!~quassel@g231186166.adsl.alicedsl.de) has quit (Ping timeout: 246 seconds) | |
[11:29:13] | MythBuild: | build #29 of master-debian-wheezy-64bit is complete: Success [3build successful] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . it/builds/29 |
[11:29:54] | MythBuild: | build #4107 of master-linux-32bit is complete: Success [3build successful] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . /builds/4107 |
[11:34:13] | IReboot (IReboot!~doug@CPE1caff7df6774-CM00252eac6f40.cpe.net.cable.rogers.com) has quit (Remote host closed the connection) | |
[11:36:29] | IReboot (IReboot!~doug@CPE1caff7df6774-CM00252eac6f40.cpe.net.cable.rogers.com) has joined #mythtv | |
[11:52:08] | MythBuild: | build #315 of master-linux-64bit-icc is complete: Success [3build successful] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . c/builds/315 |
[12:22:50] | MythBuild: | build #1539 of master-vista-mingw-32bit is complete: Success [3build successful] Build details are at http://code.mythtv.org/buildbot/builders/mast . . . /builds/1539 |
[12:51:25] | bas-t (bas-t!~tycho@52484E89.cm-4-1b.dynamic.ziggo.nl) has joined #mythtv | |
[13:22:25] | dmfrey: | Captain_Murdoch, just did an update and now I see GetRecordedList sending 304 on subsequent calls |
[13:22:51] | zombor (zombor!~zombor__@50-73-122-41-ip-static.hfc.comcastbusiness.net) has joined #mythtv | |
[13:22:51] | zombor (zombor!~zombor__@50-73-122-41-ip-static.hfc.comcastbusiness.net) has quit (Changing host) | |
[13:22:51] | zombor (zombor!~zombor__@kohana/developer/zombor) has joined #mythtv | |
[13:34:51] | Captain_Murdoch: | dmfrey, ok, thanks for verifying. |
[13:35:02] | dmfrey: | did you push a change? |
[13:44:36] | Captain_Murdoch: | no |
[13:44:48] | Captain_Murdoch: | I think it was the filesize updating during recordings. |
[13:45:04] | Captain_Murdoch: | did you check to see if you had any ongoing recordings when you last tested? |
[13:53:35] | Captain_Murdoch: | filesize gets updated when the seek table is saved to the DB which is every 10 seconds it looks like. |
[13:56:42] | stichnot (stichnot!~stichnot@adsl-69-110-144-133.dsl.pltn13.pacbell.net) has joined #mythtv | |
[13:59:25] | Goga777 (Goga777!~Goga777@2.95.199.211) has joined #mythtv | |
[14:31:24] | northrup (northrup!~jjn@c-98-193-252-184.hsd1.tn.comcast.net) has joined #mythtv | |
[15:01:09] | SteveGoodey (SteveGoodey!~steve@host86-160-43-188.range86-160.btcentralplus.com) has quit (Quit: Konversation terminated!) | |
[15:04:06] | SteveGoodey (SteveGoodey!~steve@host86-160-43-188.range86-160.btcentralplus.com) has joined #mythtv | |
[15:09:05] | NightMonkey (NightMonkey!~NightrMon@pdpc/supporter/professional/nightmonkey) has joined #mythtv | |
[15:30:11] | Juggie (Juggie!~Juggie@unaffiliated/juggie) has joined #mythtv | |
[15:35:22] | Wolfgang1 (Wolfgang1!~Thunderbi@178-27-151-224-dynip.superkabel.de) has joined #mythtv | |
[15:47:50] | FabriceMG (FabriceMG!~Thunderbi@217.112.59.207) has quit (Quit: FabriceMG) | |
[15:48:10] | FabriceMG (FabriceMG!~Thunderbi@217.112.59.207) has joined #mythtv | |
[15:48:51] | FabriceMG (FabriceMG!~Thunderbi@217.112.59.207) has quit (Client Quit) | |
[16:15:35] | Steve-Goodey (Steve-Goodey!~steve@host86-160-43-188.range86-160.btcentralplus.com) has joined #mythtv | |
[16:20:06] | dekarl (dekarl!~dekarl@p4FE85365.dip.t-dialin.net) has quit (Ping timeout: 255 seconds) | |
[16:25:01] | dekarl (dekarl!~dekarl@p4FCEF423.dip.t-dialin.net) has joined #mythtv | |
[16:30:52] | bas-t (bas-t!~tycho@52484E89.cm-4-1b.dynamic.ziggo.nl) has quit (Quit: Ex-Chat) | |
[16:40:52] | NightMonkey (NightMonkey!~NightrMon@pdpc/supporter/professional/nightmonkey) has quit (Quit: Body blow! Body blow!) | |
[16:58:27] | Merlin83b (Merlin83b!~Daniel@2a00:1ee0:3:1337:f074:3e38:6e6f:3ef2) has quit (Read error: Connection reset by peer) | |
[17:04:34] | Mousey (Mousey!~r0dent_@ross154.net) has joined #mythtv | |
[17:07:50] | Steve-Goodey (Steve-Goodey!~steve@host86-160-43-188.range86-160.btcentralplus.com) has quit (Quit: Konversation terminated!) | |
[17:08:35] | Steve-Goodey (Steve-Goodey!~steve@host86-160-43-188.range86-160.btcentralplus.com) has joined #mythtv | |
[17:21:39] | Goga777 (Goga777!~Goga777@2.95.199.211) has quit (Read error: Connection reset by peer) | |
[17:22:00] | Steve-Goodey (Steve-Goodey!~steve@host86-160-43-188.range86-160.btcentralplus.com) has quit (Quit: Konversation terminated!) | |
[17:28:24] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has joined #mythtv | |
[17:31:29] | NightMonkey (NightMonkey!~NightrMon@pdpc/supporter/professional/nightmonkey) has joined #mythtv | |
[17:46:59] | kenni (kenni!~kenni@mythtv/developer/kenni) has quit (Read error: Connection reset by peer) | |
[18:26:00] | Wolfgang1 (Wolfgang1!~Thunderbi@178-27-151-224-dynip.superkabel.de) has quit (Quit: Wolfgang1) | |
[18:29:24] | stuarta: | danielk22: have you looked at the socket code in libmythupnp? it already has lots of wrappers for the different platforms and looks like nice clean code |
[18:30:24] | jarle (jarle!~jarle@70.84-234-133.customer.lyse.net) has joined #mythtv | |
[18:30:50] | stuarta: | danielk22: in fact it's actually Qt's socket code. again why aren't we using that direct? |
[18:34:40] | cougar_h (cougar_h!~cougar@2a03:5880:104:5:202:b3ff:fe2d:8d6f) has joined #mythtv | |
[18:51:55] | Steve-Goodey (Steve-Goodey!~steve@host86-160-43-188.range86-160.btcentralplus.com) has joined #mythtv | |
[19:10:10] | danielk22: | stuarta: We can't use it direct because it relies on having one only thread use a QTcpSocket and it relies on that thread running the Qt event loop. Neither of which is the case in most of the threads utilizing MythSocket. |
[19:11:10] | danielk22: | stuarta: libmythupnp is also using the Qt3 QSocketDevice which is no longer supported upstream. |
[19:13:16] | danielk22: | stuarta: The UPnP code I'm not porting to Qt4, AFAIK it is working fairly well as is. |
[19:15:13] | Steve-Goodey (Steve-Goodey!~steve@host86-160-43-188.range86-160.btcentralplus.com) has quit (Quit: Konversation terminated!) | |
[19:16:18] | SteveGoodey (SteveGoodey!~steve@host86-160-43-188.range86-160.btcentralplus.com) has quit (Quit: Konversation terminated!) | |
[19:30:06] | kenni (kenni!~kenni@mythtv/developer/kenni) has joined #mythtv | |
[19:46:42] | skrock (skrock!~skrock@c-167270d5.024-74-736b7610.cust.bredbandsbolaget.se) has joined #mythtv | |
[19:50:43] | SteveGoodey (SteveGoodey!~steve@host86-160-43-188.range86-160.btcentralplus.com) has joined #mythtv | |
[20:30:49] | Sharky-Sleep is now known as Sharky112065 | |
[20:49:06] | stuarta: | danielk22: okay |
[20:58:32] | stuarta: | danielk22: fyi, i've push a fix which will hopefully fix the windows build |
[20:58:40] | stuarta: | on devel/mythsocket |
[20:59:16] | stuarta: | i've quickly come to the conclusion that whoever wrote MS's setsockopt was a blithering idiot |
[21:01:44] | stuarta: | why on earth would you pass numbers as strings? |
[21:06:34] | SteveGoodey (SteveGoodey!~steve@host86-160-43-188.range86-160.btcentralplus.com) has quit (Quit: Konversation terminated!) | |
[21:20:25] | ** stuarta goes to bed ** | |
[21:20:42] | waynemcdougall (waynemcdougall!~wayne@121-72-1-200.dsl.telstraclear.net) has joined #mythtv | |
[21:22:40] | skrock (skrock!~skrock@c-167270d5.024-74-736b7610.cust.bredbandsbolaget.se) has quit (Quit: WeeChat 0.3.8) | |
[21:25:00] | waynemcdougall (waynemcdougall!~wayne@121-72-1-200.dsl.telstraclear.net) has quit (Ping timeout: 244 seconds) | |
[21:29:34] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has quit (Ping timeout: 240 seconds) | |
[21:38:35] | waynemcdougall (waynemcdougall!~wayne@121-72-2-77.dsl.telstraclear.net) has joined #mythtv | |
[21:43:17] | waynemcdougall (waynemcdougall!~wayne@121-72-2-77.dsl.telstraclear.net) has quit (Ping timeout: 268 seconds) | |
[21:52:28] | northrup (northrup!~jjn@c-98-193-252-184.hsd1.tn.comcast.net) has quit (Quit: northrup) | |
[22:11:58] | goibhniu (goibhniu!~goibhniu@pdpc/supporter/active/goibhniu) has joined #mythtv | |
[22:12:15] | goibhniu (goibhniu!~goibhniu@pdpc/supporter/active/goibhniu) has left #mythtv () | |
[22:18:23] | Chutt (Chutt!~ijr@cpe-24-29-225-175.neo.res.rr.com) has quit (Read error: Connection reset by peer) | |
[22:20:59] | rsiebert (rsiebert!~quassel@e179130008.adsl.alicedsl.de) has quit (Ping timeout: 256 seconds) | |
[22:34:29] | sl1ce (sl1ce!~johnathan@c-66-31-34-71.hsd1.ma.comcast.net) has joined #mythtv | |
[22:34:55] | sraue (sraue!~stephan@xbmc/staff/sraue) has quit (Ping timeout: 244 seconds) | |
[22:43:54] | sraue_ (sraue_!~stephan@123-45-239-77-pool.cable.fcom.ch) has joined #mythtv | |
[22:48:52] | sraue_ (sraue_!~stephan@123-45-239-77-pool.cable.fcom.ch) has quit (Ping timeout: 244 seconds) | |
[22:59:41] | zombor_ (zombor_!~zombor__@kohana/developer/zombor) has joined #mythtv | |
[23:03:29] | zombor (zombor!~zombor__@kohana/developer/zombor) has quit (Ping timeout: 256 seconds) | |
[23:18:27] | zombor_ is now known as zombor | |
[23:19:21] | Chutt (Chutt!~ijr@cpe-24-29-225-175.neo.res.rr.com) has joined #mythtv | |
[23:31:12] | stuarta (stuarta!~stuarta@mythtv/developer/stuarta) has quit (Ping timeout: 268 seconds) |
IRC Logs collected by
BeirdoBot.
Please use the above link to report any bugs.