Increase max leases from 1000 to 10000.

In a very busy environment with long leases (say, a cafe), 1000 seems too
few. I think it should take more than a week's lease to get 10,000 people
trying to use your wifi even in the busiest cafe.

b/30879368

Change-Id: I0c1b5d73c463b9d701f760c071232699e6beb7c4
diff --git a/src/config.h b/src/config.h
index cdca231..5d4b639 100644
--- a/src/config.h
+++ b/src/config.h
@@ -28,7 +28,7 @@
 #define LEASE_RETRY 60 /* on error, retry writing leasefile after LEASE_RETRY seconds */
 #define CACHESIZ 150 /* default cache size */
 #define TTL_FLOOR_LIMIT 3600 /* don't allow --min-cache-ttl to raise TTL above this under any circumstances */
-#define MAXLEASES 1000 /* maximum number of DHCP leases */
+#define MAXLEASES 10000 /* maximum number of DHCP leases */
 #define PING_WAIT 3 /* wait for ping address-in-use test */
 #define PING_CACHE_TIME 30 /* Ping test assumed to be valid this long. */
 #define DECLINE_BACKOFF 600 /* disable DECLINEd static addresses for this long */