Message ID | 20170913102650.10377-12-stefanha@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/support/include/exportfs.h b/support/include/exportfs.h index 98d45c5..e73f74e 100644 --- a/support/include/exportfs.h +++ b/support/include/exportfs.h @@ -89,6 +89,9 @@ set_addrlist(nfs_client *clp, const int i, const struct sockaddr *sap) memcpy(&clp->m_addrlist[i].s6, sap, sizeof(struct sockaddr_in6)); break; #endif + case AF_VSOCK: + memcpy(&clp->m_addrlist[i].svm, sap, sizeof(struct sockaddr_vm)); + break; } }
Let set_addrlist() set AF_VSOCK client addresses. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> --- support/include/exportfs.h | 3 +++ 1 file changed, 3 insertions(+)