summaryrefslogtreecommitdiff
path: root/security/sfs/files/patch-sfsmisc_nfsserv.h
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2013-08-23 09:52:03 +0000
committerRene Ladan <rene@FreeBSD.org>2013-08-23 09:52:03 +0000
commit2738c7104a48594687e2961acdddf8ff2b2b0a97 (patch)
tree3815fb6028bd8305001c0bbd6399d9816f1430bc /security/sfs/files/patch-sfsmisc_nfsserv.h
parent- Attempt to unbreak parallel (-jX) builds by fixing targets dependencies (diff)
Remove expired port:
2013-08-23 security/sfs: Broken on FreeBSD 8 and newer
Notes
Notes: svn path=/head/; revision=325258
Diffstat (limited to 'security/sfs/files/patch-sfsmisc_nfsserv.h')
-rw-r--r--security/sfs/files/patch-sfsmisc_nfsserv.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/security/sfs/files/patch-sfsmisc_nfsserv.h b/security/sfs/files/patch-sfsmisc_nfsserv.h
deleted file mode 100644
index adfd5d0ac68d..000000000000
--- a/security/sfs/files/patch-sfsmisc_nfsserv.h
+++ /dev/null
@@ -1,42 +0,0 @@
---- sfsmisc/nfsserv.h.orig Mon Oct 11 16:43:34 2004
-+++ sfsmisc/nfsserv.h Mon Oct 11 16:39:35 2004
-@@ -110,6 +110,19 @@
- template<class T> T *getres () { return static_cast<T *> (getvoidres ()); }
- };
-
-+struct nfsserv : public virtual refcount {
-+ typedef callback<void, nfscall *>::ref cb_t;
-+ static const cb_t stalecb;
-+ cb_t cb;
-+ const ptr<nfsserv> nextserv;
-+ explicit nfsserv (ptr<nfsserv> n = NULL);
-+ void setcb (const cb_t &c) { cb = c; }
-+ void mkcb (nfscall *nc) { nc->curserv = this; (*cb) (nc); }
-+ virtual void getcall (nfscall *nc) { mkcb (nc); }
-+ virtual void getreply (nfscall *nc) { nc->sendreply (); }
-+ virtual bool encodefh (nfs_fh3 &fh);
-+};
-+
- template<int N> class nfscall_cb : public nfscall {
- typedef typename nfs3proc<N>::arg_type *arg_type;
- typedef typename nfs3proc<N>::res_type *res_type;
-@@ -134,19 +147,6 @@
- svccb *sbp;
- nfscall_rpc (svccb *sbp);
- ~nfscall_rpc ();
--};
--
--struct nfsserv : public virtual refcount {
-- typedef callback<void, nfscall *>::ref cb_t;
-- static const cb_t stalecb;
-- cb_t cb;
-- const ptr<nfsserv> nextserv;
-- explicit nfsserv (ptr<nfsserv> n = NULL);
-- void setcb (const cb_t &c) { cb = c; }
-- void mkcb (nfscall *nc) { nc->curserv = this; (*cb) (nc); }
-- virtual void getcall (nfscall *nc) { mkcb (nc); }
-- virtual void getreply (nfscall *nc) { nc->sendreply (); }
-- virtual bool encodefh (nfs_fh3 &fh);
- };
-
- class nfsserv_udp : public nfsserv {