test-udp-pings: use #defines rather than constants for test parameters

This commit is contained in:
Bert Belder 2017-09-14 01:32:44 +02:00
parent 57094513ef
commit 5d26c4df71

View File

@ -6,9 +6,10 @@
#include "error.h"
#include "win.h"
#define NUM_PINGERS 10000
#define RUN_TIME 10000
static const char PING[] = "PING";
static const int NUM_PINGERS = 10000;
static const DWORD RUN_TIME = 10000;
int main(void) {
epoll_t epoll_hnd;