James McKaskill

Results 13 comments of James McKaskill

What compiler are you using? Its complaining about a int64_t -> void\* explicit conversion which is a bit odd.

32 or 64 bit, and what version of OS X?

Honestly that might not be a bad idea. I don't think I ever really finished this one. In the end I got pissed off with C and switched over to...

https://github.com/tatsuhiro-t/spdylay#spdy-client-and-server-programs spdylay has a client called spdycat

Yes it is. I refactored the API between the main code and the platform specific code awhile back and didn't have any ARM hardware at the time so left it...

I'm happy to change to license over to bsd and to add a redirect on my repo. However I can't assign copyright. Doing so requires a boat load of paper...

Honestly I've never dealt with luarocks. I'll look into it when I get a chance, but I'll glad accept any changes needed to support it in the interim.

Thanks for the report. The issue is that **attribute**((packed)) is not being applied correctly. From the GCC docs: Specifying this attribute for struct and union types is equivalent to specifying...

For the moment you can get around this by adding an attribute packed on the union member: ``` typedef union epoll_data { void *ptr; int fd; uint32_t u32; uint64_t u64;...

Thanks for the report. This should be doable with Lua 5.2 as it now exposes a luaL_Stream.