diff options
author | Moonchild <moonchild@palemoon.org> | 2020-12-23 19:01:09 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-12-23 19:01:09 +0000 |
commit | 149d2ffa779826cb48a381099858e76e4624d471 (patch) | |
tree | 1adb922c55da8094039ea14f4b2178314d51f2a1 /nsprpub/pr/tests/provider.c | |
parent | 25b6703e956a33e0ecd8bdc18f423e5eb5dd09d4 (diff) | |
download | UXP-149d2ffa779826cb48a381099858e76e4624d471.tar UXP-149d2ffa779826cb48a381099858e76e4624d471.tar.gz UXP-149d2ffa779826cb48a381099858e76e4624d471.tar.lz UXP-149d2ffa779826cb48a381099858e76e4624d471.tar.xz UXP-149d2ffa779826cb48a381099858e76e4624d471.zip |
Issue #1693 - Update NSPR to 4.29
Diffstat (limited to 'nsprpub/pr/tests/provider.c')
-rw-r--r-- | nsprpub/pr/tests/provider.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/nsprpub/pr/tests/provider.c b/nsprpub/pr/tests/provider.c index 1bd15fb6f..3450b20ae 100644 --- a/nsprpub/pr/tests/provider.c +++ b/nsprpub/pr/tests/provider.c @@ -58,11 +58,22 @@ ** This is the beginning of the test */ +#ifdef DEBUG +#define PORT_INC_DO +100 +#else +#define PORT_INC_DO +#endif +#ifdef IS_64 +#define PORT_INC_3264 +200 +#else +#define PORT_INC_3264 +#endif + #define RECV_FLAGS 0 #define SEND_FLAGS 0 #define BUFFER_SIZE 1024 #define DEFAULT_BACKLOG 5 -#define DEFAULT_PORT 13000 +#define DEFAULT_PORT 13000 PORT_INC_DO PORT_INC_3264 #define DEFAULT_CLIENTS 1 #define ALLOWED_IN_ACCEPT 1 #define DEFAULT_CLIPPING 1000 |