-
Notifications
You must be signed in to change notification settings - Fork 0
/
lista_ips_down.c
executable file
·83 lines (67 loc) · 1.64 KB
/
lista_ips_down.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "lista_ips_down.h"
#include "cria_arquivo_conf.h"
int busca_id_mensagem(){
return 1;
}
char* busca_hora(){
return "11/10/2017 03:08:00";
}
void inicia(lista *LISTA){
LISTA->prox = NULL;
}
void adiciona_ips_down(lista *LISTA, char *ip){
printf("adiciona_ips_down: adicionando o ip %s pela primeira vez na lista\n",ip);
lista *novo=(lista *) malloc(sizeof(lista));
novo->ip = ip;
novo->quedas = 1;
novo->prox = NULL;
lista *oldHead = LISTA->prox;
LISTA->prox = novo;
novo->prox = oldHead;
}
int busca_ip_down(char *ip, lista *ini){
if (ini->prox == NULL){
printf("busca_ip_down: Primeira vez, lista é nula\n");
return 0;
}
if (strcmp(ini->prox->ip, ip)==0){
printf("ips da lista %s\n",ini->prox->ip);
printf("busca_ip_down: achou o ip %s dentro da lista\n", ip);
return ini->prox->quedas;
}
return busca_ip_down(ip, ini->prox);
}
void atualiza_quedas_ip(char *ip, lista *ini){
printf("atualiza_quedas_ip: atualizando quedas do ip %s \n",ip);
if (ini->prox == NULL){
return;
}
if (strcmp(ini->prox->ip, ip)==0){
ini->prox->quedas += 1;
}
atualiza_quedas_ip(ip, ini->prox);
}
int vazia(lista *LISTA){
if(LISTA->prox == NULL){
return 1;
}else{
return 0;
}
}
void exibe(lista *LISTA){
if(vazia(LISTA)){
printf("Lista vazia!\n\n");
return ;
}
lista *tmp;
tmp = LISTA->prox;
while( tmp != NULL){
printf("%s", tmp->ip);
printf("%5d", tmp->quedas);
tmp = tmp->prox;
}
printf("\n\n");
}