s/socklen_t/curl_socklen_t/g

This commit is contained in:
Yang Tse 2009-11-28 04:34:46 +00:00
parent 3f6854272f
commit 230dc699e2
1 changed files with 2 additions and 2 deletions

View File

@ -151,7 +151,7 @@ typedef struct tftp_state_data {
unsigned short block;
struct Curl_sockaddr_storage local_addr;
struct Curl_sockaddr_storage remote_addr;
socklen_t remote_addrlen;
curl_socklen_t remote_addrlen;
int rbytes;
int sbytes;
int blksize;
@ -1058,7 +1058,7 @@ static int tftp_getsock(struct connectdata *conn, curl_socket_t *socks,
static CURLcode tftp_receive_packet(struct connectdata *conn)
{
struct Curl_sockaddr_storage fromaddr;
socklen_t fromlen;
curl_socklen_t fromlen;
CURLcode result = CURLE_OK;
struct SessionHandle *data = conn->data;
tftp_state_data_t *state = (tftp_state_data_t *)conn->proto.tftpc;