fix generateload
This commit is contained in:
parent
80cf618ee1
commit
e91dac99cf
3 changed files with 7 additions and 6 deletions
3
Changes
3
Changes
|
|
@ -1,4 +1,4 @@
|
||||||
* Sun Jul 31 2005 Brendan O'Dea <bod@> 2.1.2
|
* Tue Aug 2 2005 Brendan O'Dea <bod@optus.net> 2.1.2
|
||||||
- Clear cluster_master on election so that slaves will accept a new master.
|
- Clear cluster_master on election so that slaves will accept a new master.
|
||||||
- Provide more comments/defaults in etc/startup-config.default.
|
- Provide more comments/defaults in etc/startup-config.default.
|
||||||
- Add DAE support (PoD/CoA) from Vladislav Bjelic.
|
- Add DAE support (PoD/CoA) from Vladislav Bjelic.
|
||||||
|
|
@ -6,6 +6,7 @@
|
||||||
- Replace flags used for LCP/IPCP with state machine.
|
- Replace flags used for LCP/IPCP with state machine.
|
||||||
- Use openssl MD5, fix DAE vector (Alex Kiernan).
|
- Use openssl MD5, fix DAE vector (Alex Kiernan).
|
||||||
- Include Acct-Session-Time in interim records.
|
- Include Acct-Session-Time in interim records.
|
||||||
|
- Fix generateload (Alex Kiernan).
|
||||||
|
|
||||||
* Tue Jun 14 2005 Brendan O'Dea <bod@optusnet.com.au> 2.1.1
|
* Tue Jun 14 2005 Brendan O'Dea <bod@optusnet.com.au> 2.1.1
|
||||||
- Add missing newline to backtrace macro.
|
- Add missing newline to backtrace macro.
|
||||||
|
|
|
||||||
|
|
@ -43,5 +43,5 @@ rm -rf %{buildroot}
|
||||||
%attr(644,root,root) /usr/share/man/man[58]/*
|
%attr(644,root,root) /usr/share/man/man[58]/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Sun Jul 31 2005 Brendan O'Dea <bod@> 2.1.2-1
|
* Tue Aug 2 2005 Brendan O'Dea <bod@optus.net> 2.1.2-1
|
||||||
- 2.1.2 release, see /usr/share/doc/l2tpns-2.1.2/Changes
|
- 2.1.2 release, see /usr/share/doc/l2tpns-2.1.2/Changes
|
||||||
|
|
|
||||||
|
|
@ -284,7 +284,7 @@ int main(int argc, char *argv[])
|
||||||
break;
|
break;
|
||||||
case 'm' :
|
case 'm' :
|
||||||
max_packets = atoi(optarg);
|
max_packets = atoi(optarg);
|
||||||
if (packet_length < 64)
|
if (max_packets < 50)
|
||||||
{
|
{
|
||||||
printf("You must send at least 50 packets.\n");
|
printf("You must send at least 50 packets.\n");
|
||||||
return -1;
|
return -1;
|
||||||
|
|
@ -1023,9 +1023,9 @@ void reader_thread(int updfd)/*{{{*/
|
||||||
controlfree(r);
|
controlfree(r);
|
||||||
break;
|
break;
|
||||||
case CONFNAK :
|
case CONFNAK :
|
||||||
// Ack whatever address we are given - it's ours
|
// Request whatever address we are given - it's ours
|
||||||
r = ppp_ipcp(s, CONFACK, time(NULL) % 255);
|
r = ppp_ipcp(s, CONFREQ, time(NULL) % 255);
|
||||||
ppp_lcp_add_option(r, 3, 4, address); // Request 0.0.0.0
|
ppp_lcp_add_option(r, 3, 4, address);
|
||||||
ppp_send(r);
|
ppp_send(r);
|
||||||
controlfree(r);
|
controlfree(r);
|
||||||
printf("Session %d: %s\n", s, inet_toa(address));
|
printf("Session %d: %s\n", s, inet_toa(address));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue