Загрузить файлы в «C»
This commit is contained in:
parent
bfd92a19b7
commit
b0c07cdf38
23
C/irc.c
23
C/irc.c
@ -16,6 +16,10 @@ unsigned int IRCC_connect(IRCC_client *irc, const char *ip, const unsigned int p
|
|||||||
if (irc->socket < 0)
|
if (irc->socket < 0)
|
||||||
return IRCC_ERROR;
|
return IRCC_ERROR;
|
||||||
|
|
||||||
|
struct timeval tv = {IRCC_PING_TIMEOUT, 0};
|
||||||
|
if (setsockopt(irc->socket, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv)) < 0)
|
||||||
|
return IRCC_ERROR;
|
||||||
|
|
||||||
int status = connect(irc->socket, (struct sockaddr *)&client_str, sizeof(client_str));
|
int status = connect(irc->socket, (struct sockaddr *)&client_str, sizeof(client_str));
|
||||||
if (status == -1)
|
if (status == -1)
|
||||||
return IRCC_ERROR;
|
return IRCC_ERROR;
|
||||||
@ -59,12 +63,12 @@ void IRCC_parse(char *tmp, IRCC_client *irc){
|
|||||||
}
|
}
|
||||||
|
|
||||||
unsigned int IRCC_recv(IRCC_client *irc){
|
unsigned int IRCC_recv(IRCC_client *irc){
|
||||||
memset(irc->raw, '\0', irc->size);
|
memset(irc->raw, '\0', IRCC_MSG_MAX);
|
||||||
irc->channel = NULL;
|
irc->channel = NULL;
|
||||||
irc->msg = NULL;
|
irc->msg = NULL;
|
||||||
irc->nick = NULL;
|
irc->nick = NULL;
|
||||||
|
|
||||||
int msg_size = recv(irc->socket, irc->raw, irc->size, 0);
|
int msg_size = recv(irc->socket, irc->raw, IRCC_MSG_MAX, 0);
|
||||||
if (msg_size == 0 || msg_size == -1)
|
if (msg_size == 0 || msg_size == -1)
|
||||||
return IRCC_DISCONNECTED;
|
return IRCC_DISCONNECTED;
|
||||||
|
|
||||||
@ -117,7 +121,7 @@ unsigned int IRCC_recv(IRCC_client *irc){
|
|||||||
return IRCC_SUCCESS;
|
return IRCC_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
void IRCC_send(IRCC_client *irc, char *msg, char *channel){
|
void IRCC_send(IRCC_client *irc, const char *msg, const char *channel){
|
||||||
size_t size = strlen("PRIVMSG :\r\n") + strlen(channel) + strlen(msg);
|
size_t size = strlen("PRIVMSG :\r\n") + strlen(channel) + strlen(msg);
|
||||||
|
|
||||||
char *tmp = (char *)malloc(size + 1);
|
char *tmp = (char *)malloc(size + 1);
|
||||||
@ -133,21 +137,14 @@ void IRCC_send(IRCC_client *irc, char *msg, char *channel){
|
|||||||
free(tmp);
|
free(tmp);
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int IRCC_init(IRCC_client *irc, size_t size){
|
unsigned int IRCC_init(IRCC_client *irc) {
|
||||||
if (size <= 250){
|
irc->raw = (char *)malloc(IRCC_MSG_MAX + 1);
|
||||||
fprintf(stderr, "Low buffer size (IRCC_init) (Min 250/512)\n");
|
|
||||||
return IRCC_ERROR;
|
|
||||||
}
|
|
||||||
|
|
||||||
irc->raw = (char *)malloc(size + 1);
|
|
||||||
if (irc->raw == NULL){
|
if (irc->raw == NULL){
|
||||||
fprintf(stderr, "malloc returned NULL (IRCC_init)\n");
|
fprintf(stderr, "malloc returned NULL (IRCC_init)\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
irc->msg = irc->nick = irc->channel = NULL;
|
irc->msg = irc->nick = irc->channel = NULL;
|
||||||
|
|
||||||
irc->size = size;
|
|
||||||
return IRCC_SUCCESS;
|
return IRCC_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -156,6 +153,4 @@ void IRCC_close(IRCC_client *irc){
|
|||||||
|
|
||||||
free(irc->raw);
|
free(irc->raw);
|
||||||
irc->raw = irc->msg = irc->nick = irc->channel = NULL;
|
irc->raw = irc->msg = irc->nick = irc->channel = NULL;
|
||||||
|
|
||||||
irc->size = 0;
|
|
||||||
}
|
}
|
||||||
|
7
C/irc.h
7
C/irc.h
@ -17,6 +17,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <netdb.h>
|
#include <netdb.h>
|
||||||
|
#include <sys/time.h>
|
||||||
#include <netinet/in.h>
|
#include <netinet/in.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
@ -40,7 +41,7 @@ enum {
|
|||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int socket;
|
int socket;
|
||||||
size_t size;
|
|
||||||
char *raw;
|
char *raw;
|
||||||
char *msg;
|
char *msg;
|
||||||
char *channel;
|
char *channel;
|
||||||
@ -50,6 +51,6 @@ typedef struct {
|
|||||||
unsigned int IRCC_connect(IRCC_client *irc, const char *ip, const unsigned int port);
|
unsigned int IRCC_connect(IRCC_client *irc, const char *ip, const unsigned int port);
|
||||||
unsigned int IRCC_register(IRCC_client *irc, const char *nickname);
|
unsigned int IRCC_register(IRCC_client *irc, const char *nickname);
|
||||||
unsigned int IRCC_recv(IRCC_client *irc);
|
unsigned int IRCC_recv(IRCC_client *irc);
|
||||||
void IRCC_send(IRCC_client *irc, char *msg, char *channel);
|
void IRCC_send(IRCC_client *irc, const char *msg, const char *channel);
|
||||||
unsigned int IRCC_init(IRCC_client *irc, size_t size);
|
unsigned int IRCC_init(IRCC_client *irc);
|
||||||
void IRCC_close(IRCC_client *irc);
|
void IRCC_close(IRCC_client *irc);
|
||||||
|
11
C/main.c
11
C/main.c
@ -1,10 +1,10 @@
|
|||||||
#include "irc.h"
|
#include "irc.h"
|
||||||
|
|
||||||
//Config
|
//Config
|
||||||
#define HOST "localhost"
|
#define HOST "irc.rizon.net"
|
||||||
#define PORT 6667
|
#define PORT 6667
|
||||||
#define NICK "tester134"
|
#define NICK "tester134"
|
||||||
char *channels[] = {"#channel"};
|
char *channels[] = {"#hp"};
|
||||||
|
|
||||||
|
|
||||||
#define CHECK_NULL() (client.nick != NULL && client.channel != NULL && client.msg != NULL)
|
#define CHECK_NULL() (client.nick != NULL && client.channel != NULL && client.msg != NULL)
|
||||||
@ -46,16 +46,11 @@ void recvinfo(void) {
|
|||||||
int main(void) {
|
int main(void) {
|
||||||
|
|
||||||
//512 - size of raw buffer (max irc)
|
//512 - size of raw buffer (max irc)
|
||||||
IRCC_init(&client, IRCC_MSG_MAX);
|
IRCC_init(&client);
|
||||||
int status = IRCC_connect(&client, HOST, PORT);
|
int status = IRCC_connect(&client, HOST, PORT);
|
||||||
if (status == IRCC_ERROR)
|
if (status == IRCC_ERROR)
|
||||||
die("Conn refused");
|
die("Conn refused");
|
||||||
|
|
||||||
//Socket timeout
|
|
||||||
struct timeval tv = {IRCC_PING_TIMEOUT, IRCC_PING_TIMEOUT};
|
|
||||||
if (setsockopt(client.socket, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv)) < 0)
|
|
||||||
die("setsockopt");
|
|
||||||
|
|
||||||
//Register
|
//Register
|
||||||
IRCC_register(&client, NICK);
|
IRCC_register(&client, NICK);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user