1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# pySFML - Python bindings for SFML
# Copyright 2012-2013, Jonathan De Wachter <dewachter.jonathan@gmail.com>
#
# This software is released under the LGPLv3 license.
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from libcpp.string cimport string
from libcpp.vector cimport vector
from ftp cimport response
cdef extern from "SFML/Network.hpp" namespace "sf::Ftp":
cdef enum TransferMode:
Binary
Ascii
Ebcdic
cdef cppclass Response:
Response()
Response(response.Status)
Response(response.Status, string&)
bint isOk()
response.Status getStatus()
string& getMessage()
cdef cppclass DirectoryResponse:
DirectoryResponse()
DirectoryResponse(Response&)
string& getDirectory()
bint isOk()
cdef cppclass ListingResponse:
ListingResponse()
ListingResponse(Response&, vector[char]&)
vector[string]& getListing()
bint isOk()
|