repo.or.cz
/
dftpd.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix PASV reply for Firefox.
[dftpd.git]
/
SessionPtr.hpp
blob
71f4b5d929a103439914aaeb5b47ceb048af7671
1
#ifndef __DFTPD__SESSIONPTR_HPP__
2
#define __DFTPD__SESSIONPTR_HPP__
3
4
#include <boost/shared_ptr.hpp>
5
#include <boost/weak_ptr.hpp>
6
7
class
Session
;
8
typedef boost
::
shared_ptr
<
Session
>
SessionPtr
;
9
typedef boost
::
weak_ptr
<
Session
>
SessionWPtr
;
10
11
#endif