Domanda

Sto cercando di monitorare una presa UNIX ("/ TMP / MySocket").

Posso farlo bene in node.js: aumenta un evento quando 1) una presa è vincolata, 2) Qualcuno si collega al socket, 3) I dati vengono inviati alla presa e 4) La presa viene disconnessa. .

Sto provando ad ora farlo in c / c ++: voglio monitorare "/ tmp / myrseket" per gli eventi sopra indicati.Ho guardato libevento (che preferirei usare), ma vedi che richiede un IP: porto.C'è un modo per monitorare i prese UNIX?

o qualcuno può suggerire un'altra soluzione C / C ++?

È stato utile?

Soluzione

You could monitor a UNIX domain socket just like a regular file, since it can be operated like a file, e.g. in libev,

struct sockaddr_un address;
memset(&address, 0, sizeof(address));
address.sun_family = AF_LOCAL;
strcpy(address.sun_path, "/tmp/mysocket");

bind(socket, (struct sockaddr*)(&address), sizeof(address));
listen(socket, 5);

// now listen if someone has connected to the socket.
// we use 'ev_io' since the 'socket' can be treated as a file descriptor.
struct ev_io* io = malloc(sizeof(ev_io));
ev_io_init(io, accept_cb, socket, EV_READ);
ev_io_start(loop, io);
...

void accept_cb(struct ev_loop* loop, struct ev_io* io, int r)
{
    // someone has connected. we accept the child.
    struct sockaddr_un client_address;
    socklen_t client_address_len = sizeof(client_address);
    int client_fd = accept(socket, (sockaddr*)(&client_address),
                           &client_address_len);

    // 'read' / 'recv' from client_fd here.
    // or use another 'ev_io' for async read.
}

libevent should be similar.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top