| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | games: remove trailing whitespace in *.c and *.h | rillig | 2021-05-05 | 1 | -23/+23 |
| | | |||||
| * | Get all the games compiling for iOS | Cameron Katri | 2021-02-22 | 1 | -1/+2 |
| | | |||||
| * | Remove all the conditional compilation for INTERNET. Now you can run | dholland | 2014-03-30 | 1 | -134/+183 |
| | | | | | | | | this on either a local or internet socket (including via inetd on either) and it will, or is supposed to, DTRT. Does not really support ipv6 yet, but in a number of places will no longer vomit or exhibit UB if it encounters an ipv6 address. | ||||
| * | Clean up the names of the various pieces of socket apparatus. | dholland | 2014-03-30 | 1 | -67/+121 |
| | | | | Systematic naming is easier to follow... | ||||
| * | fix non-INTERNET build | dholland | 2014-03-29 | 1 | -4/+4 |
| | | |||||
| * | Reduce ifdefs by making a common function to talk to either syslogd or | dholland | 2014-03-29 | 1 | -47/+11 |
| | | | | stderr. | ||||
| * | handle compiled-in pathnames the customary way | dholland | 2014-03-29 | 1 | -5/+7 |
| | | |||||
| * | Additional minor cleanup and remove a straggler data declaration | dholland | 2014-03-29 | 1 | -9/+9 |
| | | | | from hunt_common.h. | ||||
| * | sprinkle static | dholland | 2014-03-29 | 1 | -5/+11 |
| | | |||||
| * | Move definitions to the file they're used in. | dholland | 2014-03-29 | 1 | -2/+9 |
| | | |||||
| * | remove stubbed-out function | dholland | 2014-03-29 | 1 | -6/+5 |
| | | |||||
| * | Use setproctitle() instead of handrolled version. | dholland | 2014-03-29 | 1 | -13/+3 |
| | | |||||
| * | Make the code for issuing talk requests to find players actually build. | dholland | 2014-03-29 | 1 | -4/+4 |
| | | |||||
| * | don't declare own boolean type | dholland | 2014-03-29 | 1 | -36/+36 |
| | | |||||
| * | use random(), not a handrolled 16-bit generator | dholland | 2014-03-29 | 1 | -12/+4 |
| | | |||||
| * | fix unused variable warnings | christos | 2013-10-19 | 1 | -7/+3 |
| | | |||||
| * | NULL does not need a cast | plunky | 2011-08-31 | 1 | -6/+6 |
| | | |||||
| * | sprinkle static and prune some dead code | dholland | 2009-08-12 | 1 | -11/+11 |
| | | |||||
| * | Remove config for the return type of signal handlers, which is also a | dholland | 2009-07-04 | 1 | -3/+3 |
| | | | | long-dead issue. | ||||
| * | Remove references to config #defines for the thoroughly obsolete | dholland | 2009-07-04 | 1 | -7/+2 |
| | | | | 4.2BSD syslog API. | ||||
| * | Whitespace. | dholland | 2009-07-04 | 1 | -181/+182 |
| | | |||||
| * | ANSIfy function declarations. | dholland | 2009-07-04 | 1 | -25/+13 |
| | | |||||
| * | Remove a pile of bogus casts. One object file diff, crosschecked and | dholland | 2009-07-04 | 1 | -7/+7 |
| | | | | found harmless. | ||||
| * | sprintf -> snprintf | dholland | 2009-06-28 | 1 | -11/+16 |
| | | |||||
| * | clean for WARNS=4 | dholland | 2008-01-28 | 1 | -8/+8 |
| | | |||||
| * | PR/18906: roskens at elfin dot net: misc. select() to poll() updates. | elad | 2006-10-07 | 1 | -5/+5 |
| | | | | Adapted to -current by myself, thanks for the patch! | ||||
| * | change (mostly) int to socklen_t. GCC 4 doesn't like that int and | mrg | 2006-05-09 | 1 | -5/+5 |
| | | | | socklen_t are different signness. | ||||
| * | Remove uses of __P. | jsm | 2004-01-27 | 1 | -9/+9 |
| | | |||||
| * | Merge with v20030416. | wiz | 2003-06-11 | 1 | -5/+30 |
| | | |||||
| * | select() -> poll() | mycroft | 2002-09-20 | 1 | -91/+70 |
| | | | | Also, turn off talk announcements; it's a wretched hack. | ||||
| * | - openlog "huntd" instead of "HUNT" | lukem | 2001-01-09 | 1 | -6/+6 |
| | | | | | | - consistently log non-critical errors at LOG_WARNING not LOG_ERR - consistently use positive numbers for exit() and _exit() - one warning was using printf() instead of syslog() | ||||
| * | Don't declare 'extern opt*' getopt variables. | simonb | 2000-04-14 | 1 | -4/+2 |
| | | |||||
| * | FD_ZERO select mask before FD_SET-ing it | lukem | 1997-10-20 | 1 | -2/+3 |
| | | |||||
| * | drop core in /var/tmp (from linux). | mrg | 1997-10-15 | 1 | -3/+3 |
| | | |||||
| * | use err/warn instead of perror | lukem | 1997-10-11 | 1 | -11/+11 |
| | | |||||
| * | Yet Another Monster Commit: | lukem | 1997-10-10 | 1 | -65/+84 |
| | | | | | | | | | | | | - WARNSify - getopt returns -1 not EOF - select() uses an fd_set, not int/long; modify code to use FD_* et al instead of direct bitwise operations - in otto.c::look (renamed to ottolook() to prevent name clash), the case WEST section had a 'goto cont_east', instead of 'goto cont_west'. (picked up by WARNS=1, because cont_west was an unused label because of this typo). probably meant that otto got lost in the maze :-/ - deprecate register, convert bcmp() -> memcmp() | ||||
| * | hunt version 1993-07-17 | mrg | 1997-10-04 | 1 | -0/+956 |
