| Index: nspr/pr/src/pthreads/ptio.c
|
| diff --git a/nspr/pr/src/pthreads/ptio.c b/nspr/pr/src/pthreads/ptio.c
|
| index b92749bb11885642c55c5e3dd4f2188a5ef9f7f2..125f1f93f533d2a4e680a90cdda8ea63e62cf910 100644
|
| --- a/nspr/pr/src/pthreads/ptio.c
|
| +++ b/nspr/pr/src/pthreads/ptio.c
|
| @@ -2854,6 +2854,7 @@ static PRStatus pt_GetSocketOption(PRFileDesc *fd, PRSocketOptionData *data)
|
| case PR_SockOpt_Keepalive:
|
| case PR_SockOpt_NoDelay:
|
| case PR_SockOpt_Broadcast:
|
| + case PR_SockOpt_Reuseport:
|
| {
|
| PRIntn value;
|
| length = sizeof(PRIntn);
|
| @@ -2973,6 +2974,7 @@ static PRStatus pt_SetSocketOption(PRFileDesc *fd, const PRSocketOptionData *dat
|
| case PR_SockOpt_Keepalive:
|
| case PR_SockOpt_NoDelay:
|
| case PR_SockOpt_Broadcast:
|
| + case PR_SockOpt_Reuseport:
|
| {
|
| PRIntn value = (data->value.reuse_addr) ? 1 : 0;
|
| rv = setsockopt(
|
|
|