Author | Message | Time |
---|---|---|
DarkMinion | For some reason, I'm getting a return of 0x0000007f on MCP_STARTUP, which is not listed on bnetdocs as a known return value. Anyone have any ideas? | August 24, 2005, 4:54 PM |
DarkMinion | Apparently it means you've received a temporary IPBan from MCP server...odd | August 24, 2005, 5:02 PM |
DarkMinion | Arta, you should add that as a possible return value for MCP_STARTUP in bnetdocs when you get a chance | August 24, 2005, 5:04 PM |
Myndfyr | Done/ | August 24, 2005, 5:21 PM |
inner. | Nice triple post, DM :p | August 24, 2005, 6:27 PM |
Quarantine | [vL] people can do that, duh. | August 24, 2005, 6:51 PM |
Yegg | [quote]0x7f: Temporary IP ban from the MCP server*[/quote] I think it would look nicer if the "f" was capitalized. :) | August 24, 2005, 9:50 PM |
Myndfyr | [quote author=Yegg link=topic=12608.msg125276#msg125276 date=1124920229] [quote]0x7f: Temporary IP ban from the MCP server*[/quote] I think it would look nicer if the "f" was capitalized. :) [/quote] I disagree. I prefer my numeric constants to have lowercase capitalization. But thanks for the comment. | August 24, 2005, 10:06 PM |
QwertyMonster | [quote author=MyndFyre link=topic=12608.msg125277#msg125277 date=1124921190] [quote author=Yegg link=topic=12608.msg125276#msg125276 date=1124920229] [quote]0x7f: Temporary IP ban from the MCP server*[/quote] I think it would look nicer if the "f" was capitalized. :) [/quote] I disagree. I prefer my numeric constants to have lowercase capitalization. But thanks for the comment. [/quote] May i ask, why? Usually caps make things stand more out. Wouldn't you want it to stand out? | August 25, 2005, 12:54 AM |
HdxBmx27 | [quote author=QwertyMonster link=topic=12608.msg125320#msg125320 date=1124931257] May i ask, why? Usually caps make things stand more out. Wouldn't you want it to stand out? [/quote] With lowercased letters I find it easier to determin sertian leters from each other (F and E for example [f and e]) ~-~(HDX)~-~ | August 25, 2005, 12:58 AM |
Newby | a b c d e f Look a lot less similar in nature to each than: A B C D E F | August 25, 2005, 12:59 AM |
Myndfyr | [quote author=QwertyMonster link=topic=12608.msg125320#msg125320 date=1124931257] [quote author=MyndFyre link=topic=12608.msg125277#msg125277 date=1124921190] [quote author=Yegg link=topic=12608.msg125276#msg125276 date=1124920229] [quote]0x7f: Temporary IP ban from the MCP server*[/quote] I think it would look nicer if the "f" was capitalized. :) [/quote] I disagree. I prefer my numeric constants to have lowercase capitalization. But thanks for the comment. [/quote] May i ask, why? Usually caps make things stand more out. Wouldn't you want it to stand out? [/quote] BECAUSE I DON'T LIKE MY HEX NUMBERS TO LOOK LIKE THEY'RE YELLING. 0XFFEDABCF [img]http://maddox.xmission.com/keyboard4.jpg[/img] It's okay to type the identifiers out in caps for constants, as it's commonly used: [code] const int MAX_BYTES_PER_MSG = 412; #define INCOMING_BUFFER_LENGTH 0x7ff [/code] I just prefer lowercase numeric literals. | August 25, 2005, 1:11 AM |
R.a.B.B.i.T | Caps are bad, as shown by 0XBADFACE. | August 25, 2005, 1:37 AM |
DarkMinion | I have a question: Why the hell does it matter? | August 25, 2005, 1:43 AM |
R.a.B.B.i.T | It doesn't, really. We're just bored. | August 25, 2005, 3:24 AM |