From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=38666 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OEQRQ-0005nA-NT for qemu-devel@nongnu.org; Tue, 18 May 2010 13:19:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OEQHQ-0005Vt-HS for qemu-devel@nongnu.org; Tue, 18 May 2010 13:08:36 -0400 Received: from mail-yw0-f184.google.com ([209.85.211.184]:51679) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OEQHN-0005QE-3D for qemu-devel@nongnu.org; Tue, 18 May 2010 13:08:32 -0400 Received: by mail-yw0-f184.google.com with SMTP id 14so3433770ywh.25 for ; Tue, 18 May 2010 10:08:29 -0700 (PDT) From: Miguel Di Ciurcio Filho Date: Tue, 18 May 2010 14:07:48 -0300 Message-Id: <1274202469-9332-10-git-send-email-miguel.filho@gmail.com> In-Reply-To: <1274202469-9332-1-git-send-email-miguel.filho@gmail.com> References: <1274202469-9332-1-git-send-email-miguel.filho@gmail.com> Subject: [Qemu-devel] [PATCH v4 09/10] net: socket: introduce info_dict List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: armbru@redhat.com, lcapitulino@redhat.com Signed-off-by: Miguel Di Ciurcio Filho --- net/socket.c | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/net/socket.c b/net/socket.c index 1c4e153..5be1b54 100644 --- a/net/socket.c +++ b/net/socket.c @@ -28,6 +28,7 @@ #include "net.h" #include "qemu-char.h" #include "qemu-common.h" +#include "qjson.h" #include "qemu-error.h" #include "qemu-option.h" #include "qemu_socket.h" @@ -49,6 +50,16 @@ typedef struct NetSocketListenState { int fd; } NetSocketListenState; +static QDict *net_socket_format_info_dict(const char *host, + int service, + const char *family, + int is_server) +{ + return qobject_to_qdict(qobject_from_jsonf("{ 'model': 'socket', \ + 'host': %s, 'family': %s, 'service': %d, 'server': %i }", host, + family, service, is_server)); +} + /* XXX: we consider we can send the whole packet without blocking */ static ssize_t net_socket_receive(VLANClientState *nc, const uint8_t *buf, size_t size) { @@ -369,6 +380,9 @@ static void net_socket_accept(void *opaque) snprintf(s1->nc.info_str, sizeof(s1->nc.info_str), "socket: connection from %s:%d", inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port)); + + s1->nc.info_dict = net_socket_format_info_dict(inet_ntoa(saddr.sin_addr), + ntohs(saddr.sin_port), "ipv4", 1); } } @@ -462,6 +476,10 @@ static int net_socket_connect_init(VLANState *vlan, snprintf(s->nc.info_str, sizeof(s->nc.info_str), "socket: connect to %s:%d", inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port)); + + s->nc.info_dict = net_socket_format_info_dict(inet_ntoa(saddr.sin_addr), + ntohs(saddr.sin_port), "ipv4", 0); + return 0; } @@ -491,6 +509,10 @@ static int net_socket_mcast_init(VLANState *vlan, snprintf(s->nc.info_str, sizeof(s->nc.info_str), "socket: mcast=%s:%d", inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port)); + + s->nc.info_dict = net_socket_format_info_dict(inet_ntoa(saddr.sin_addr), + ntohs(saddr.sin_port), "ipv4", 0); + return 0; } -- 1.7.1