~ubuntu-branches/ubuntu/utopic/vsftpd/utopic-proposed

« back to all changes in this revision

Viewing changes to readwrite.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-05-03 17:49:00 UTC
  • mto: (2.4.1 sid) (1.5.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: james.westby@ubuntu.com-20090503174900-0osuifgr8jknvu5e
Tags: upstream-2.1.1~pre1
ImportĀ upstreamĀ versionĀ 2.1.1~pre1

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
int ftp_read_data(struct vsf_session* p_sess, char* p_buf, unsigned int len);
16
16
int ftp_write_data(const struct vsf_session* p_sess, const char* p_buf,
17
17
                   unsigned int len);
18
 
void ftp_getline(const struct vsf_session* p_sess, struct mystr* p_str,
19
 
                 char* p_buf);
 
18
void ftp_getline(struct vsf_session* p_sess, struct mystr* p_str, char* p_buf);
20
19
 
21
20
#endif /* VSF_READWRITE_H */
22
21