• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/postfix-255/postfix/src/global/

Lines Matching refs:rate

5 /*	connection count and rate management client interface
15 /* count, rate)
20 /* int *rate;
52 /* count, rate, msgs, rcpts)
57 /* int *rate;
66 /* connection count and connection rate for that remote client.
69 /* returns the current MAIL FROM rate for the specified remote
73 /* returns the current RCPT TO rate for the specified remote
78 /* current newtls request rate for the specified remote client.
81 /* rate for the specified remote client.
86 /* anvil_clnt_lookup() returns the current count and rate
94 /* Client rate control service handle.
102 /* .IP rate
103 /* Pointer to storage for the current connection rate for this
106 /* Pointer to storage for the current message rate for this
109 /* Pointer to storage for the current recipient rate for this
112 /* Pointer to storage for the current "new TLS session" rate
120 /* anvil(8), connection/rate limiting
154 /* anvil_clnt_create - instantiate connection rate service client */
173 /* anvil_clnt_free - destroy connection rate service client */
183 const char *addr, int *count, int *rate,
197 ATTR_TYPE_INT, ANVIL_ATTR_RATE, rate,
212 const char *addr, int *count, int *rate)
225 ATTR_TYPE_INT, ANVIL_ATTR_RATE, rate,
386 int rate;
416 if (anvil_clnt_connect(anvil, service, addr, &count, &rate) != ANVIL_STAT_OK)
419 vstream_printf("count=%d, rate=%d\n", count, rate);
424 vstream_printf("rate=%d\n", msgs);
429 vstream_printf("rate=%d\n", rcpts);
434 vstream_printf("rate=%d\n", newtls);
439 vstream_printf("rate=%d\n", newtls);
446 if (anvil_clnt_lookup(anvil, service, addr, &count, &rate,
450 vstream_printf("count=%d, rate=%d msgs=%d rcpts=%d newtls=%d\n",
451 count, rate, msgs, rcpts, newtls);