Browse Source

PPP: Make MAXNAMELEN/MAXSECRETLEN overridable in lwipopts.h

STABLE-2_1_x
goldsimon 17 years ago
parent
commit
73251bc9c1
  1. 5
      src/include/lwip/opt.h

5
src/include/lwip/opt.h

@ -1527,9 +1527,12 @@
#endif
#define PPP_MINMRU 128 /* No MRUs below this */
#ifndef MAXNAMELEN
#define MAXNAMELEN 256 /* max length of hostname or name for auth */
#endif
#ifndef MAXSECRETLEN
#define MAXSECRETLEN 256 /* max length of password or secret */
#endif
#endif /* PPP_SUPPORT */

Loading…
Cancel
Save