linux-can.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Kurt Van Dijck <kurt.van.dijck@eia.be>
To: Wolfgang <wutz@unterderbruecke.de>
Cc: linux-can@vger.kernel.org
Subject: Re: recv list
Date: Wed, 4 Jan 2012 21:41:51 +0100	[thread overview]
Message-ID: <20120104204151.GA306@e-circ.dyndns.org> (raw)
In-Reply-To: <loom.20120104T160223-182@post.gmane.org>

On Wed, Jan 04, 2012 at 04:28:46PM +0000, Wolfgang wrote:
> Hi,
> 
> OK, I create 1 socket for one source address (what is the maximum of pgns per 
> socket?). 
a bit unlimited, use filters there.
> So if I use recvfrom for one specific pgn - while waiting for that specific pgn
Nope,
man recvfrom ....

can-j1939 will store the source address & PGN into the 'src_addr' (called dest_addr
in your example).
You cannot pick a specific PGN from the incoming queue.

> the other pgns from that src address are stored in the buffer of the socket and
> will be later "recvfrom"? So no can frame will be lost?
> 
> Am I right, with this, only the j1939 frame with id<0x19233000> should be
> received, but nothing is done, (just waiting for anything), what have I done 
> wrong?
> 
> #include <sys/ioctl.h>
> #include <net/if.h>
> #include <string.h>
> #include <linux/can/j1939.h>
> #include <linux/can.h>
> #include <unistd.h>
> #include <sys/socket.h>
> #include <stdio.h>
> #include <sys/types.h>
> 
> 
> 
> int main (void)
> {
> 	int s;
> 	s = socket(PF_CAN, SOCK_DGRAM, CAN_J1939);
> 	    
> 	struct sockaddr_can addr;
> 
>     memset(&addr, 0, sizeof(addr));
>     addr.can_ifindex = if_nametoindex("can0");
>     addr.can_addr.j1939.name = J1939_NO_NAME;    
>     addr.can_addr.j1939.addr = 0x00;
>     addr.can_addr.j1939.pgn = J1939_NO_PGN;
>     addr.can_family = AF_CAN;  
>    
>    
>     if (bind(s, (void *)&addr, sizeof(addr))<0)
>     	{
>     		perror ("bind failed");
>         	}
>    
>    
> 	struct can_frame frame      	

you should do now:
	int ret;
	socklen_t len; 
	struct sockaddr_can src_addr;
	char buf[128];

	while (1) {
		len = sizeof(src_addr);
		ret = recvfrom(s, buf, sizeof(buf), 0, (void *)&src_addr, &len);
		if (ret < 0)
			perror ("recvfrom failed");
		/* now, ret contains the received size */ 
		/* do things with data */
		/* set broadcast */
		src_addr.can_addr.j1939.addr = J1939_NO_ADDR;
		src_addr.can_addr.j1939.name = J1939_NO_NAME;
		if (sendto(s2, buf, ret, 0, (void *)&src_addr, len) < 0)
			perror("sendto failed");
	}
>    
>    struct sockaddr_can dest_addr;
>    
>    memset(&dest_addr, 0, sizeof(dest_addr));
>    dest_addr.can_family = AF_CAN;
>    dest_addr.can_addr.j1939.name = J1939_NO_NAME;
>    dest_addr.can_addr.j1939.addr = 0x30;
>    dest_addr.can_addr.j1939.pgn = 0x12300;
>    
>     	if (recvfrom(s, frame.data, sizeof(frame.data), 0, (void *)&dest_addr,\
>  sizeof(dest_addr))<0)
> 		{
>   	 	perror ("recvfrom failed");
>   	 	}
>    		 
>   return 0;
> }
> 
> 
> Wolfgang
> 
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-can" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

  reply	other threads:[~2012-01-04 20:41 UTC|newest]

Thread overview: 95+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-06 10:44 using j1939 wutz
2011-12-06 12:14 ` Kurt Van Dijck
2011-12-06 12:28   ` Kurt Van Dijck
2011-12-06 12:37   ` Wolfgang
2011-12-06 13:18     ` Kurt Van Dijck
2011-12-07  8:55       ` Wolfgang
2011-12-07 14:33         ` using j1939: j1939.h Kurt Van Dijck
2011-12-07 14:50           ` Kurt Van Dijck
2011-12-08 12:23             ` Wolfgang
2011-12-08 12:30               ` using j1939: userspace binaries Kurt Van Dijck
2011-12-08 12:48                 ` Wolfgang
2011-12-08 13:32                   ` Kurt Van Dijck
2011-12-08 14:27                     ` Wolfgang
2011-12-08 15:17                       ` using j1939: AF_CAN missing Kurt Van Dijck
2011-12-08 15:34                         ` Oliver Hartkopp
2011-12-08 15:19                       ` iproute2-j1939 Kurt Van Dijck
2011-12-08 15:56                         ` iproute2-j1939 Wolfgang
2011-12-08 16:44                         ` iproute2-j1939 Wolfgang
2011-12-09  6:55                           ` iproute2-j1939 Oliver Hartkopp
2011-12-09  7:28                             ` iproute2-j1939 Wolfgang
2011-12-09  7:58                               ` iproute2-j1939 Oliver Hartkopp
2011-12-09  8:07                           ` iproute2-j1939 Kurt Van Dijck
2011-12-09  8:12                             ` iproute2-j1939 Oliver Hartkopp
2011-12-09  9:02                             ` iproute2-j1939 Wolfgang
2011-12-09  9:48                               ` iproute2-j1939 Kurt Van Dijck
2011-12-09 10:56                                 ` iproute2-j1939 Wolfgang
2011-12-09 11:03                                   ` iproute2-j1939 Kurt Van Dijck
2011-12-09 11:12                                     ` iproute2-j1939 Wolfgang
2011-12-09 11:47                                       ` iproute2-j1939 Kurt Van Dijck
2011-12-09 12:14                                         ` iproute2-j1939 Wolfgang
2011-12-06 13:24     ` using j1939 Oliver Hartkopp
2011-12-09 13:47       ` Kurt Van Dijck
2011-12-09 13:58         ` Wolfgang
     [not found]           ` <20111209143224.GB309@e-circ.dyndns.org>
     [not found]             ` <20111209144911.144460@gmx.net>
2011-12-09 15:01               ` Kurt Van Dijck
2011-12-09 17:23                 ` Wolfgang Wagner
2011-12-12  8:12                   ` Kurt Van Dijck
2011-12-12 11:27                     ` Wolfgang
2011-12-12 12:40                       ` Kurt Van Dijck
2011-12-12 15:10                         ` Wolfgang
2011-12-13  9:53                           ` backporting can & can-j1939 Kurt Van Dijck
2011-12-13 15:20                             ` Wolfgang
2011-12-13 15:51                               ` Kurt Van Dijck
2011-12-13 18:49                                 ` Wolfgang
2011-12-14 13:29                                 ` Wolfgang
2011-12-14 15:43                                   ` Kurt Van Dijck
2011-12-14 18:19                                     ` Wolfgang
2011-12-14 20:42                                       ` Using " Kurt Van Dijck
2011-12-15  8:35                                         ` Wolfgang
2011-12-15  9:20                                           ` Cross-compiling iproute2-j1939 Kurt Van Dijck
2011-12-15 11:24                                             ` Wolfgang
2011-12-15 12:04                                               ` replacing iproute2 & can-utils with j1939 variants Kurt Van Dijck
2011-12-15 13:43                                                 ` Wolfgang
2011-12-15 14:00                                                   ` using can-j1939 Kurt Van Dijck
2011-12-15 14:49                                                     ` Wolfgang
2011-12-15 15:06                                                       ` Kurt Van Dijck
2011-12-15 15:16                                                         ` Wolfgang
2011-12-15 15:50                                                           ` Kurt Van Dijck
2011-12-15 16:17                                                             ` Wolfgang
2011-12-16  8:37                                                       ` Kurt Van Dijck
2011-12-16  9:00                                                         ` Wolfgang
2011-12-16  9:33                                                           ` Kurt Van Dijck
2011-12-16 14:29                                                             ` Wolfgang
2011-12-17 19:20                                                               ` Kurt Van Dijck
2011-12-20 10:35                                                                 ` API calls Wolfgang
2011-12-20 11:00                                                                   ` Kurt Van Dijck
2011-12-20 14:49                                                                     ` Wolfgang
2011-12-20 15:05                                                                       ` Kurt Van Dijck
2011-12-20 15:43                                                                         ` Wolfgang
2011-12-20 16:32                                                                           ` Kurt Van Dijck
2011-12-21 10:46                                                                             ` Wolfgang
2011-12-21 13:43                                                                               ` using can-j1939 Kurt Van Dijck
2011-12-21 15:11                                                                                 ` Wolfgang
2011-12-21 15:53                                                                                   ` Kurt Van Dijck
2011-12-22 13:06                                                                                     ` Wolfgang
2011-12-23 11:04                                                                                       ` Kurt Van Dijck
2011-12-28 10:49                                                                                         ` Wolfgang
2012-01-04  9:47                                                                                           ` Kurt Van Dijck
2012-01-04 16:28                                                                                             ` recv list Wolfgang
2012-01-04 20:41                                                                                               ` Kurt Van Dijck [this message]
2012-01-05 10:55                                                                                                 ` Wolfgang
2012-01-05 12:09                                                                                                   ` Kurt Van Dijck
2012-01-05 21:24                                                                                                     ` Wolfgang
2012-01-06 12:25                                                                                                       ` Kurt Van Dijck
2012-01-06 18:25                                                                                                         ` Wolfgang
2012-01-09  9:33                                                                                                           ` Kurt Van Dijck
2012-01-09 10:02                                                                                                             ` Changing addr with bind() Kurt Van Dijck
2012-01-09 10:23                                                                                                               ` Kurt Van Dijck
2012-01-09 10:46                                                                                                         ` recv list Wolfgang
  -- strict thread matches above, loose matches on Subject: below --
2012-01-09 13:26 Kurt Van Dijck
2012-01-09 16:35 ` Wolfgang
2012-01-10  8:51   ` Kurt Van Dijck
2012-01-10 10:45     ` Wolfgang
2012-01-10 15:23       ` Kurt Van Dijck
2012-01-12 15:23         ` Wolfgang
2012-01-12 15:43           ` Kurt Van Dijck

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120104204151.GA306@e-circ.dyndns.org \
    --to=kurt.van.dijck@eia.be \
    --cc=linux-can@vger.kernel.org \
    --cc=wutz@unterderbruecke.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).