Changeset 2487f4b1224c3ae07686de96b376d14325922e84
- Timestamp:
- 06/08/08 17:40:32
(3 months ago)
- Author:
- Rémi Denis-Courmont <rdenis@simphalempin.com>
- git-committer:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1212939632 +0300
- git-parent:
[5112dd3d4b64c1c7a263b2a78f11fa5bd4c216b2]
- git-author:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1212936763 +0300
- Message:
Fix typo
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd666030 |
r2487f4b |
|
| 59 | 59 | #endif |
|---|
| 60 | 60 | |
|---|
| 61 | | static int SocksNegociate( vlc_object_t *, int fd, int i_socks_version, |
|---|
| | 61 | static int SocksNegotiate( vlc_object_t *, int fd, int i_socks_version, |
|---|
| 62 | 62 | const char *psz_user, const char *psz_passwd ); |
|---|
| 63 | 63 | static int SocksHandshakeTCP( vlc_object_t *, |
|---|
| … | … | |
| 335 | 335 | |
|---|
| 336 | 336 | /***************************************************************************** |
|---|
| 337 | | * SocksNegociate: |
|---|
| | 337 | * SocksNegotiate: |
|---|
| 338 | 338 | ***************************************************************************** |
|---|
| 339 | | * Negociate authentication with a SOCKS server. |
|---|
| | 339 | * Negotiate authentication with a SOCKS server. |
|---|
| 340 | 340 | *****************************************************************************/ |
|---|
| 341 | | static int SocksNegociate( vlc_object_t *p_obj, |
|---|
| | 341 | static int SocksNegotiate( vlc_object_t *p_obj, |
|---|
| 342 | 342 | int fd, int i_socks_version, |
|---|
| 343 | 343 | const char *psz_socks_user, |
|---|
| … | … | |
| 351 | 351 | return VLC_SUCCESS; |
|---|
| 352 | 352 | |
|---|
| 353 | | /* We negociate authentication */ |
|---|
| | 353 | /* We negotiate authentication */ |
|---|
| 354 | 354 | |
|---|
| 355 | 355 | if( ( psz_socks_user == NULL ) && ( psz_socks_passwd == NULL ) ) |
|---|
| … | … | |
| 443 | 443 | |
|---|
| 444 | 444 | if( i_socks_version == 5 && |
|---|
| 445 | | SocksNegociate( p_obj, fd, i_socks_version, |
|---|
| | 445 | SocksNegotiate( p_obj, fd, i_socks_version, |
|---|
| 446 | 446 | psz_user, psz_passwd ) ) |
|---|
| 447 | 447 | return VLC_EGENERIC; |
|---|