Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
3a6efa71
Commit
3a6efa71
authored
Jul 18, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ftp: handle multiple lines answers.
parent
760f9ce3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
modules/access/ftp.c
modules/access/ftp.c
+23
-0
No files found.
modules/access/ftp.c
View file @
3a6efa71
...
...
@@ -450,6 +450,29 @@ static int ftp_ReadCommand( access_t *p_access,
return
-
1
;
}
if
(
psz_line
[
3
]
==
'-'
)
/* Multiple response */
{
char
end
[
4
];
memcpy
(
end
,
psz_line
,
3
);
end
[
3
]
=
' '
;
for
(
;;
)
{
char
*
psz_tmp
=
net_Gets
(
p_access
,
p_sys
->
fd_cmd
);
if
(
psz_tmp
==
NULL
)
/* Error */
break
;
if
(
!
strncmp
(
psz_tmp
,
end
,
4
)
)
{
free
(
psz_tmp
);
break
;
}
free
(
psz_tmp
);
}
}
i_answer
=
atoi
(
psz_line
);
if
(
pi_answer
)
*
pi_answer
=
i_answer
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment