Compare commits
1 Commits
2424bfa5a7
...
3bf9216a20
Author | SHA1 | Date |
---|---|---|
Félix Arreola Rodríguez | 3bf9216a20 |
|
@ -1013,3 +1013,7 @@ int ftp_session_get_poll (FTPSession *session) {
|
||||||
return session->poll;
|
return session->poll;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char *ftp_session_get_user (FTPSession *session) {
|
||||||
|
return session->user;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -56,6 +56,8 @@ int ftp_session_get_control_socket (FTPSession *session);
|
||||||
int ftp_session_get_data_socket (FTPSession *session);
|
int ftp_session_get_data_socket (FTPSession *session);
|
||||||
int ftp_session_get_last_code (FTPSession *session);
|
int ftp_session_get_last_code (FTPSession *session);
|
||||||
char * ftp_session_get_last_message (FTPSession *session);
|
char * ftp_session_get_last_message (FTPSession *session);
|
||||||
|
const char *ftp_session_get_user (FTPSession *session);
|
||||||
|
|
||||||
void ftp_session_free (FTPSession *session);
|
void ftp_session_free (FTPSession *session);
|
||||||
|
|
||||||
void ftp_session_set_multiline_func (FTPSession *session, FTPLineFunc func, void *data);
|
void ftp_session_set_multiline_func (FTPSession *session, FTPLineFunc func, void *data);
|
||||||
|
|
Loading…
Reference in New Issue