From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ua0-f174.google.com (mail-ua0-f174.google.com [209.85.217.174]) by dpdk.org (Postfix) with ESMTP id AA75B1396 for ; Mon, 8 Aug 2016 20:11:04 +0200 (CEST) Received: by mail-ua0-f174.google.com with SMTP id i31so120417083uai.2 for ; Mon, 08 Aug 2016 11:11:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to; bh=N+4jyI+DScvephCKIXdwgRh4k+V6k48+3pqTOPJuIfY=; b=LKOHKp4MfCW5A2Ykf1WEOQf3FXL2J3upeewznPaJtpoqrYhau7KCT6BXuRvs7ZACOd lspCmufarxnc/OEeMQbQIEzBPZOsV6M7p1NFBR/SbY15UnNXwX5C+gE+/w0C2CQ6BZJ2 w/2vpK3Ic+RfJTfNOpz/6jmT4DMOSIhXVWHlTc/kHnDDf7NzqVufJKdvdpHItg18k7wO JQpIZQfxj+SUO5o9uWMmexdp/nxrNy2aAWCC/9qFU0JTYCmo/jJxWpn5NlB76SpGeaVm MiqYrLJMBXAju7MdR55kS/Sx/n5hexh0x/fMNjlHtYdQidQiaKIVpgSU/LoMU8FLwVPG TaeA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=N+4jyI+DScvephCKIXdwgRh4k+V6k48+3pqTOPJuIfY=; b=RNborfwMfN/xvpwZPEDAuPGJGFtKcdTToQF6H2/VH98K4+ZQVSxcoG/FIZK7GeAGE8 Kkf/DUr1IQEmixS/vHEW0JNQ3vrn6K7TvRq2vVZlQzgWZIxB8f2qATdG4r58lv9HcScr 3dR9xNsqmmwCivt8q63z8vHREFz9LrvVuF/6ePHdt1I+TT7YiMz5alC/dPTXaSfTmNTT n4RtvRoe1HMtQJn7n4voD9maFdAubRew6uyO/0lJBp6ka0MyLh2cxdUCiJXnPJDBzB+4 O5JIBIv8d97yLydpGM6FZY302l2gC2kub2ZCSW8v3Q/6Kc0kC0CeC3zDwLZQfnglXa3V v8GQ== X-Gm-Message-State: AEkoousmvOmaTVFlPHTty3htKtpG+RCBrPVpn6gJYlrdBA8Gdoaj/Vqz70BGJUp/3iYN3gb+0Ijld52YRFrczw== X-Received: by 10.159.32.66 with SMTP id 60mr50560063uam.100.1470679863867; Mon, 08 Aug 2016 11:11:03 -0700 (PDT) MIME-Version: 1.0 Received: by 10.159.32.7 with HTTP; Mon, 8 Aug 2016 11:10:43 -0700 (PDT) From: Sandeep Rayapudi Date: Mon, 8 Aug 2016 14:10:43 -0400 Message-ID: To: users@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-users] Send data between two different DPDK applications X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Aug 2016 18:11:05 -0000 Hi, I'm trying to understand if data can be exchanged between two different DPDK applications running as different processes. This may be a dumb question but I couldn't find a way going through the documentation. Ultimately, I want to achieve the following: - Develop two standalone DPDA applications - client and server - Send a simple hello world message between them - Run these two applications on different Docker containers - Repeat the case in containers scenario. Please let me know what modules / features I can use in DPDK to achieve this. Thank you.