Index: nspr/pr/include/prio.h |
diff --git a/nspr/pr/include/prio.h b/nspr/pr/include/prio.h |
index 72397c8ea2d70622541ddd422467415e9bfc1f5a..c7e85db41f39fe94865c4c16c60e03012f988f0b 100644 |
--- a/nspr/pr/include/prio.h |
+++ b/nspr/pr/include/prio.h |
@@ -211,6 +211,8 @@ typedef enum PRSockOption |
PR_SockOpt_NoDelay, /* don't delay send to coalesce packets */ |
PR_SockOpt_MaxSegment, /* maximum segment size */ |
PR_SockOpt_Broadcast, /* enable broadcast */ |
+ PR_SockOpt_Reuseport, /* allow local address & port reuse on |
+ * platforms that support it */ |
PR_SockOpt_Last |
} PRSockOption; |
@@ -234,6 +236,8 @@ typedef struct PRSocketOptionData |
PRUintn tos; /* IP type of service and precedence */ |
PRBool non_blocking; /* Non-blocking (network) I/O */ |
PRBool reuse_addr; /* Allow local address reuse */ |
+ PRBool reuse_port; /* Allow local address & port reuse on |
+ * platforms that support it */ |
PRBool keep_alive; /* Keep connections alive */ |
PRBool mcast_loopback; /* IP multicast loopback */ |
PRBool no_delay; /* Don't delay send to coalesce packets */ |