| 854 | |
| 855 | |
| 856 | class ServiceAttachAuth : public ServerAuth |
| 857 | { |
| 858 | public: |
| 859 | ServiceAttachAuth(rem_port* port, const PathName& pmanagerName, ClumpletWriter* spb) |
| 860 | : ServerAuth(spb, spbParam, port), |
| 861 | managerName(getPool(), pmanagerName), |
| 862 | pb(spb) |
| 863 | { } |
| 864 | |
| 865 | void accept(PACKET* send, Auth::WriterImplementation* authBlock); |
| 866 | |
| 867 | private: |
| 868 | PathName managerName; |
| 869 | AutoPtr<ClumpletWriter> pb; |
| 870 | }; |
| 871 | |
| 872 | |
| 873 | #ifdef WIN_NT |