Author: tuexen
Date: Fri Jun 17 07:03:42 2011
New Revision: 223178
URL: http://svn.freebsd.org/changeset/base/223178

Log:
  Update the list of supported socket options for sctp_opt_info().
  
  MFC after: 1 month.

Modified:
  head/lib/libc/net/sctp_sys_calls.c

Modified: head/lib/libc/net/sctp_sys_calls.c
==============================================================================
--- head/lib/libc/net/sctp_sys_calls.c  Fri Jun 17 06:59:49 2011        
(r223177)
+++ head/lib/libc/net/sctp_sys_calls.c  Fri Jun 17 07:03:42 2011        
(r223178)
@@ -365,9 +365,6 @@ sctp_opt_info(int sd, sctp_assoc_t id, i
        case SCTP_DEFAULT_SEND_PARAM:
                ((struct sctp_assocparams *)arg)->sasoc_assoc_id = id;
                break;
-       case SCTP_SET_PEER_PRIMARY_ADDR:
-               ((struct sctp_setpeerprim *)arg)->sspp_assoc_id = id;
-               break;
        case SCTP_PRIMARY_ADDR:
                ((struct sctp_setprim *)arg)->ssp_assoc_id = id;
                break;
@@ -407,6 +404,12 @@ sctp_opt_info(int sd, sctp_assoc_t id, i
        case SCTP_EVENT:
                ((struct sctp_event *)arg)->se_assoc_id = id;
                break;
+       case SCTP_DEFAULT_SNDINFO:
+               ((struct sctp_sndinfo *)arg)->snd_assoc_id = id;
+               break;
+       case SCTP_DEFAULT_PRINFO:
+               ((struct sctp_default_prinfo *)arg)->pr_assoc_id = id;
+               break;
        default:
                break;
        }
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to