summaryrefslogtreecommitdiff
path: root/omapip
Commit message (Collapse)AuthorAgeFilesLines
...
* - A bug in DLPI packet transmission (Solaris, HP/UX) that caused the serverDavid Hankins2009-03-241-1/+4
| | | | | | | | | | | | to stop receiving packets is fixed. The same fix also means that the MAC address will no longer appear 'bogus' on DLPI-based systems. [ISC-Bugs #19186] - A bug in select handling was discovered where the results of one select() call were discarded, causing the server to process the next select() call and use more system calls than required. This has been repaired - the sockets will be handled after the first return from select(), resulting in fewer system calls. [ISC-Bugs #19186]
* Update makefiles and code to deal with GCC 4.3 requirements bug 19054Shawn Routhier2009-01-221-9/+9
|
* Update documentation to refer to omshell(1)Shawn Routhier2008-11-191-1/+1
|
* regenDavid Hankins2008-06-111-59/+41
|
* - A memory leak when using omapi has been fixed. [ISC-Bugs #17560]David Hankins2008-03-183-40/+94
|
* - ./configure was extended to cover many optional build features, suchDavid Hankins2008-02-283-3/+5
| | | | | as failover, server tracing, debugging, and the execute() command. [ISC-Bugs #17678]
* Updated copyright strings for 4.1.0a1 releaseEvan Hunt2008-01-241-1/+1
|
* automake regenerationEvan Hunt2008-01-241-41/+59
|
* - Multiple (up to "delayed-ack x;" maximum) DHCPv4 packets are now queued andDavid Hankins2008-01-211-16/+76
| | | | | | | | released in bursts after single fsync() events when the upper limit is reached or if the receiving sockets go dry. The practical upshot is that fsync-coupled server performance is now multiplicitively increased. The default delayed ack limit is 28. Thanks entirely to a patch from Christof Chen.
* Build fixes for Solaris 9.Shane Kerr2008-01-091-4/+4
| | | | See RT ticket #17444 for more.
* finer granularity timersFrancis Dupont2008-01-031-4/+4
|
* automake regenerationDavid Hankins2007-12-051-8/+3
|
* almost editorial stuffFrancis Dupont2007-11-301-1/+1
|
* Unit test framework now added.Shane Kerr2007-11-161-2/+8
| | | | See RT ticket #17223 for more.
* Don't segfault on NULLs.David Hankins2007-11-071-0/+3
|
* automake regenerationDavid Hankins2007-09-051-59/+41
|
* Fix a number of warnings (and a few real bugs) found by enablingShane Kerr2007-08-223-5/+3
| | | | | | gcc warnings. See RT ticket #17013 for more.
* Code cleanup to remove warnings from "gcc -Wall".Shane Kerr2007-07-1318-115/+13
| | | | See RT ticket #16988 for more.
* Fixed file descriptor leak on failure in initializing OMAPI listener.Shane Kerr2007-07-121-31/+46
| | | | See RT ticket #16993 for more.
* automake regenerationEvan Hunt2007-07-101-39/+51
|
* Build fixes for Solaris. (CVS checkin, part 4)Shane Kerr2007-06-261-2/+8
| | | | See RT ticket #16966 for more.
* automake++, second round.David Hankins2007-06-071-268/+375
|
* automake updatedDavid Hankins2007-06-071-375/+268
|
* regenShane Kerr2007-06-051-8/+2
|
* Merge in changes that were needed in 3.1.0 to silence NetBSD compilerEvan Hunt2007-05-291-5/+5
| | | | warnings. [rt16907]
* Build fixes. See RT ticket #16888 for more information.Shane Kerr2007-05-292-2/+10
|
* regenMark Andrews2007-05-231-8/+2
|
* Fix pointer size in 64-bit land.Shane Kerr2007-05-231-2/+8
| | | | See RT ticket #16902 for more.
* cvsignore++David Hankins2007-05-211-0/+1
|
* Looks like the package version was moved into autoconf.David Hankins2007-05-191-8/+2
|
* Copyright++David Hankins2007-05-1919-30/+30
|
* - Replaced ./configure shellscripting with GNU Autoconf. [ISC-Bugs #16405b]David Hankins2007-05-1923-154/+601
| | | | | - RELNOTES/README++ - s/wether/whether/ in dhcp-options.5 manpage edits.
* DHCPv6 branch merged to HEAD.David Hankins2007-05-081-1/+1
|
* Fixed a bug that caused OMAPI clients to hang when opening leases. [rt16495]Evan Hunt2007-05-071-4/+8
|
* Allow trace output files (-tf option) to be overwritten, rather thanEvan Hunt2007-04-271-1/+8
| | | | crashing dhcpd if the file already exists [rt16459]
* - Some default hash table sizes were tweaked, some upwards, some downwards.David Hankins2006-10-271-1/+85
| | | | | | | | | | | | | | | | | | | 3.1.0a1's tables resulted in a reduction in default server memory use. The new selected values provide more of a zero sum (increasing the size of tables likely to be populated, decreasing the size of tables unlikely). - Lease structures appear in three spearate hashes: by IP address, by UID, and by hardware address. One type of table was used for all three, and improvements to IP address hashing were applied to all three (so UID and hardware addresses were treated like 4-byte integers). There are now two types of tables, and the uid/hw hashes use functions more appropriate to their needs. - The max-lease-misbalance percentage no longer causes scheduled rebalance runs to be skipped: it still governs the schedule, but every scheduled run will attempt balance. [ISC-Bugs #16396]
* Hankin's fixes for hash-related core dumps on HEAD.Shane Kerr2006-07-251-4/+19
|
* Fix build failure on aix pursuant to review - 'inline' is GCC only.David Hankins2006-06-081-2/+2
| | | | [ISC-Bugs #16155]
* Compiler warnings (a few were bugfixes internal to HEAD development) silenced.David Hankins2006-06-051-11/+12
| | | | [ISC-Bugs #16133]
* - Varying option space code and length bit widths (8/16/32) are nowDavid Hankins2006-06-012-53/+89
| | | | | supported. This is a milestone in acheiving RFC 3925 "VIVSO" and DHCPv6 support. [ISC-Bugs #15979]
* - Merge changes between 3.0.3RC1 and 3.0.4-BETA-3 into HEAD (silenceDavid Hankins2006-02-249-19/+70
| | | | robie).
* Corrections to changes made on HEAD pursuant to review of changes betweenDavid Hankins2005-09-301-2/+4
| | | | V3.0.3 and HEAD. [ISC-Bugs #15348]
* New files added in merge from V3-RELEASE-BRANCH to HEAD as of V3-0-3-BETA-1.David Hankins2005-03-171-0/+539
|
* MASSIVE merge from V3-RELEASE-BRANCH into HEAD. HEAD and V3-RELEASE areDavid Hankins2005-03-1722-717/+617
| | | | now synced as of tag V3-0-3-BETA-1.
* sync with branchTed Lemon2001-08-102-9/+13
|
* Merge changes between 3.0rc7 and 3.0rc8pl2.Ted Lemon2001-06-2717-239/+666
|
* Sync with 3.0rc7Ted Lemon2001-05-176-44/+144
|
* Oops, get rid of a not-quite-blank line.Ted Lemon2001-05-021-1/+1
|
* Add a strcasecmp for comparing omapi_data_type_t's.Ted Lemon2001-05-021-0/+25
|
* Do a case-insensitive compare on the key algorithm name.Ted Lemon2001-05-021-3/+3
|