mirror of
https://github.com/kingk85/uFTP.git
synced 2025-07-18 17:56:11 +03:00
80 lines
2.6 KiB
C
80 lines
2.6 KiB
C
/*
|
|
* The MIT License
|
|
*
|
|
* Copyright 2018 ugo.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <arpa/inet.h>
|
|
#include <fcntl.h>
|
|
|
|
#include "../ftpData.h"
|
|
#include "connection.h"
|
|
|
|
/* Return the higher socket available*/
|
|
int getMaximumSocketFd(int mainSocket, ftpDataType * ftpData)
|
|
{
|
|
int toReturn = mainSocket;
|
|
int i = 0;
|
|
|
|
for (i = 0; i < ftpData->ftpParameters.maxClients; i++)
|
|
{
|
|
if (ftpData->clients[i].socketDescriptor > toReturn) {
|
|
toReturn = ftpData->clients[i].socketDescriptor;
|
|
}
|
|
}
|
|
|
|
return toReturn;
|
|
}
|
|
|
|
int createSocket(ftpDataType * ftpData)
|
|
{
|
|
printf("\nCreating main socket on port %d", ftpData->ftpParameters.port);
|
|
int sock, errorCode;
|
|
struct sockaddr_in temp;
|
|
|
|
//Socket creation
|
|
sock = socket(AF_INET, SOCK_STREAM, 0);
|
|
temp.sin_family = AF_INET;
|
|
temp.sin_addr.s_addr = INADDR_ANY;
|
|
temp.sin_port = htons(ftpData->ftpParameters.port);
|
|
|
|
//No blocking socket
|
|
errorCode = fcntl(sock, F_SETFL, O_NONBLOCK);
|
|
|
|
int reuse = 1;
|
|
if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (const char*)&reuse, sizeof(reuse)) < 0)
|
|
perror("setsockopt(SO_REUSEADDR) failed");
|
|
|
|
if (setsockopt(sock, SOL_SOCKET, SO_REUSEPORT, (const char*)&reuse, sizeof(reuse)) < 0)
|
|
perror("setsockopt(SO_REUSEPORT) failed");
|
|
|
|
//Bind socket
|
|
errorCode = bind(sock,(struct sockaddr*) &temp,sizeof(temp));
|
|
|
|
//Number of client allowed
|
|
errorCode = listen(sock, ftpData->ftpParameters.maxClients + 1);
|
|
|
|
return sock;
|
|
} |