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 84 85 86 87
|
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
struct listeClients
{
/* données */
int socket;
char pseudo[256];
/* chainage */
struct listeClients *suivant;
};
struct listeClients *ajoutListe (struct listeClients *l, int sock, char *nom)
{
/* allocation du noeud */
struct listeClients *nouveau = malloc (sizeof *nouveau);
/* si tout c'est bien passe : */
if (nouveau != NULL)
{
/* mise a jour des champs : */
/* donnees */
nouveau->socket = sock;
strcpy (nouveau->pseudo, nom);
/* chainage par defaut */
nouveau->suivant = NULL;
/* chainage */
if (l == NULL)
{
/* c'est le premier : */
l = nouveau;
}
else
{
/* on cherche le dernier noeud */
struct listeClients *p = l;
while (p->suivant != NULL)
{
/* pointer sur le suivant */
p = p->suivant;
}
/* modification du chainage */
p->suivant = nouveau;
}
}
return l;
}
void afficheListe (struct listeClients const *l)
{
struct listeClients const *p = l;
while (p != NULL)
{
printf ("%d : '%s'\n", p->socket, p->pseudo);
/* pointer sur le suivant */
p = p->suivant;
}
}
#include <unistd.h>
int main (void)
{
struct listeClients *l = NULL;
int newfd = STDIN_FILENO;
char pseudo[32];
do
{
int nbytes = read (newfd, pseudo, sizeof pseudo - 1);
pseudo[nbytes] = 0;
l = ajoutListe (l, newfd, pseudo);
}
while (pseudo[0] != '\n');
afficheListe (l);
return 0;
} |