/[RFID]/3m-810.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /3m-810.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 29 by dpavlin, Mon Apr 6 13:10:40 2009 UTC revision 54 by dpavlin, Wed Jun 24 13:39:43 2009 UTC
# Line 8  use Data::Dump qw/dump/; Line 8  use Data::Dump qw/dump/;
8  use Carp qw/confess/;  use Carp qw/confess/;
9  use Getopt::Long;  use Getopt::Long;
10  use File::Slurp;  use File::Slurp;
11    use JSON;
12    
13  use IO::Socket::INET;  use IO::Socket::INET;
14    
15  my $meteor_server = '192.168.1.13:4671';  my $debug = 0;
16    
17    my $tags_data;
18    my $tags_security;
19    my $visible_tags;
20    
21    my $meteor_server; # = '192.168.1.13:4671';
22  my $meteor_fh;  my $meteor_fh;
23    
24  sub meteor {  sub meteor {
# Line 19  sub meteor { Line 26  sub meteor {
26          push @a, scalar localtime() if $a[0] =~ m{^info};          push @a, scalar localtime() if $a[0] =~ m{^info};
27    
28          if ( ! defined $meteor_fh ) {          if ( ! defined $meteor_fh ) {
29                  warn "# open connection to $meteor_server";                  if ( $meteor_fh =
30                  $meteor_fh = IO::Socket::INET->new(                                  IO::Socket::INET->new(
31                                  PeerAddr => $meteor_server,                                          PeerAddr => $meteor_server,
32                                  Timeout => 1,                                          Timeout => 1,
33                  ) || warn "can't connect to meteor $meteor_server: $!"; # FIXME warn => die for production                                  )
34                  $meteor_fh = 0; # don't try again                  ) {
35                            warn "# meteor connected to $meteor_server";
36                    } else {
37                            warn "can't connect to meteor $meteor_server: $!";
38                            $meteor_fh = 0;
39                    }
40          }          }
41    
42          warn ">> meteor ",dump( @a );          if ( $meteor_fh ) {
43          print $meteor_fh "ADDMESSAGE test ",join('|',@a),"\n" if $meteor_fh;                  warn ">> meteor ",dump( @a );
44                    print $meteor_fh "ADDMESSAGE test ",join('|',@a),"\n"
45            }
46  }  }
47    
48  my $debug = 0;  my $listen_port = 9000;                  # pick something not in use
49    sub http_server {
50    
51            my $server = IO::Socket::INET->new(
52                    Proto     => 'tcp',
53                    LocalPort => $listen_port,
54                    Listen    => SOMAXCONN,
55                    Reuse     => 1
56            );
57                                                                      
58            die "can't setup server" unless $server;
59    
60            print "Server $0 accepting clients at http://localhost:$listen_port/\n";
61    
62            sub static {
63                    my ($client,$path) = @_;
64    
65                    $path = "www/$path";
66    
67                    return unless -e $path;
68    
69                    my $type = 'text/plain';
70                    $type = 'text/html' if $path =~ m{\.htm};
71                    $type = 'application/javascript' if $path =~ m{\.js};
72    
73                    print $client "HTTP/1.0 200 OK\r\nContent-Type: $type\r\n\r\n";
74                    open(my $html, $path);
75                    while(<$html>) {
76                            print $client $_;
77                    }
78                    close($html);
79    
80                    return $path;
81            }
82    
83            while (my $client = $server->accept()) {
84                    $client->autoflush(1);
85                    my $request = <$client>;
86    
87                    warn "WEB << $request\n" if $debug;
88    
89                    if ($request =~ m{^GET (/.*) HTTP/1.[01]}) {
90                            my $method = $1;
91                            my $param;
92                            if ( $method =~ s{\?(.+)}{} ) {
93                                    foreach my $p ( split(/[&;]/, $1) ) {
94                                            my ($n,$v) = split(/=/, $p, 2);
95                                            $param->{$n} = $v;
96                                    }
97                                    warn "WEB << param: ",dump( $param ) if $debug;
98                            }
99                            if ( my $path = static( $client,$1 ) ) {
100                                    warn "WEB >> $path" if $debug;
101                            } elsif ( $method =~ m{/scan} ) {
102                                    my $tags = scan_for_tags();
103                                    my $json = { time => time() };
104                                    map {
105                                            my $d = decode_tag($_);
106                                            $d->{sid} = $_;
107                                            $d->{security} = $tags_security->{$_};
108                                            push @{ $json->{tags} },  $d;
109                                    } keys %$tags;
110                                    print $client "HTTP/1.0 200 OK\r\nContent-Type: application/x-javascript\r\n\r\n",
111                                            $param->{callback}, "(", to_json($json), ")\r\n";
112                            } else {
113                                    print $client "HTTP/1.0 404 Unkown method\r\n";
114                            }
115                    } else {
116                            print $client "HTTP/1.0 500 No method\r\n";
117                    }
118                    close $client;
119            }
120    
121            die "server died";
122    }
123    
124    
125    my $last_message = {};
126    sub _message {
127            my $type = shift @_;
128            my $text = join(' ',@_);
129            my $last = $last_message->{$type};
130            if ( $text ne $last ) {
131                    warn $type eq 'diag' ? '# ' : '', $text, "\n";
132                    $last_message->{$type} = $text;
133            }
134    }
135    
136    sub _log { _message('log',@_) };
137    sub diag { _message('diag',@_) };
138    
139  my $device    = "/dev/ttyUSB0";  my $device    = "/dev/ttyUSB0";
140  my $baudrate  = "19200";  my $baudrate  = "19200";
# Line 41  my $stopbits  = "1"; Line 144  my $stopbits  = "1";
144  my $handshake = "none";  my $handshake = "none";
145    
146  my $program_path = './program/';  my $program_path = './program/';
147    my $secure_path = './secure/';
148    
149    # http server
150    my $http_server = 1;
151    
152    # 3M defaults: 8,4
153    my $max_rfid_block = 16;
154    my $read_blocks = 8;
155    
156  my $response = {  my $response = {
157          'd500090400110a0500027250'                              => 'version?',          'd500090400110a0500027250'                              => 'version?',
# Line 63  GetOptions( Line 174  GetOptions(
174          'stopbits=i'  => \$stopbits,          'stopbits=i'  => \$stopbits,
175          'handshake=s' => \$handshake,          'handshake=s' => \$handshake,
176          'meteor=s'    => \$meteor_server,          'meteor=s'    => \$meteor_server,
177            'http-server!' => \$http_server,
178  ) or die $!;  ) or die $!;
179    
180  my $verbose = $debug > 0 ? $debug-- : 0;  my $verbose = $debug > 0 ? $debug-- : 0;
# Line 98  it under the same terms ans Perl itself. Line 210  it under the same terms ans Perl itself.
210    
211  =cut  =cut
212    
213  my $tags_data;  my $item_type = {
214  my $visible_tags;          1 => 'Book',
215            6 => 'CD/CD ROM',
216            2 => 'Magazine',
217            13 => 'Book with Audio Tape',
218            9 => 'Book with CD/CD ROM',
219            0 => 'Other',
220    
221            5 => 'Video',
222            4 => 'Audio Tape',
223            3 => 'Bound Journal',
224            8 => 'Book with Diskette',
225            7 => 'Diskette',
226    };
227    
228    warn "## known item type: ",dump( $item_type ) if $debug;
229    
230  my $port=new Device::SerialPort($device) || die "can't open serial port $device: $!\n";  my $port=new Device::SerialPort($device) || die "can't open serial port $device: $!\n";
231  warn "using $device $handshake $baudrate $databits $parity $stopbits" if $debug;  warn "using $device $handshake $baudrate $databits $parity $stopbits" if $debug;
# Line 109  $databits=$port->databits($databits); Line 235  $databits=$port->databits($databits);
235  $parity=$port->parity($parity);  $parity=$port->parity($parity);
236  $stopbits=$port->stopbits($stopbits);  $stopbits=$port->stopbits($stopbits);
237    
238  print "## using $device $baudrate $databits $parity $stopbits debug: $debug verbose: $verbose\n";  warn "## using $device $baudrate $databits $parity $stopbits debug: $debug verbose: $verbose\n";
239    
240  # Just in case: reset our timing and buffers  # Just in case: reset our timing and buffers
241  $port->lookclear();  $port->lookclear();
# Line 132  cmd( 'D5 00  05   04 00 11 Line 258  cmd( 'D5 00  05   04 00 11
258  cmd( 'D6 00  0C   13  04  01 00  02 00  03 00  04 00   AAF2','FIXME: stats?',  cmd( 'D6 00  0C   13  04  01 00  02 00  03 00  04 00   AAF2','FIXME: stats?',
259       'D6 00  0C   13  00  02 01 01 03 02 02 03  00     E778', sub { assert() }  );       'D6 00  0C   13  00  02 01 01 03 02 02 03  00     E778', sub { assert() }  );
260    
261  # start scanning for tags  sub scan_for_tags {
262    
263  cmd( 'D6 00  05   FE     00  05         FA40', "scan for tags, retry $_",          my @tags;
          'D6 00  0F   FE  00 00  05 ', sub { # 01 E00401003123AA26  941A         # seen, serial length: 8  
                 my $rest = shift || die "no rest?";  
                 my $nr = ord( substr( $rest, 0, 1 ) );  
   
                 if ( ! $nr ) {  
                         print "no tags in range\n";  
                         update_visible_tags();  
                         meteor( 'info-none-in-range' );  
                         $tags_data = {};  
                 } else {  
264    
265                          my $tags = substr( $rest, 1 );          cmd( 'D6 00  05   FE     00  05         FA40', "scan for tags",
266                     'D6 00  0F   FE  00 00  05 ', sub { # 01 E00401003123AA26  941A         # seen, serial length: 8
267                            my $rest = shift || die "no rest?";
268                            my $nr = ord( substr( $rest, 0, 1 ) );
269    
270                            if ( ! $nr ) {
271                                    _log "no tags in range\n";
272                                    update_visible_tags();
273                                    meteor( 'info-none-in-range' );
274                                    $tags_data = {};
275                            } else {
276    
277                          my $tl = length( $tags );                                  my $tags = substr( $rest, 1 );
278                          die "wrong length $tl for $nr tags: ",dump( $tags ) if $tl =! $nr * 8;                                  my $tl = length( $tags );
279                                    die "wrong length $tl for $nr tags: ",dump( $tags ) if $tl =! $nr * 8;
280    
281                          my @tags;                                  push @tags, uc(unpack('H16', substr($tags, $_ * 8, 8))) foreach ( 0 .. $nr - 1 );
282                          push @tags, uc(unpack('H16', substr($tags, $_ * 8, 8))) foreach ( 0 .. $nr - 1 );                                  warn "## tags ",as_hex($tags), " [$tl] = ",dump( $tags ) if $debug;
283                          warn "## tags ",as_hex($tags), " [$tl] = ",dump( $tags ) if $debug;                                  _log "$nr tags in range: ", join(',', @tags ) , "\n";
                         print "$nr tags in range: ", join(',', @tags ) , "\n";  
284    
285                          meteor( 'info-in-range', join(' ',@tags));                                  meteor( 'info-in-range', join(' ',@tags));
286    
287                          update_visible_tags( @tags );                                  update_visible_tags( @tags );
288                            }
289                  }                  }
290          }          );
291  ) while(1);  
292  #) foreach ( 1 .. 100 );          diag "tags: ",dump( @tags );
293            return $tags_data;
294    
295    }
296    
297    # start scanning for tags
298    
299    if ( $http_server ) {
300            http_server;
301    } else {
302            scan_for_tags while 1;
303    }
304    
305    die "over and out";
306    
307  sub update_visible_tags {  sub update_visible_tags {
308          my @tags = @_;          my @tags = @_;
# Line 173  sub update_visible_tags { Line 311  sub update_visible_tags {
311          $visible_tags = {};          $visible_tags = {};
312    
313          foreach my $tag ( @tags ) {          foreach my $tag ( @tags ) {
314                    $visible_tags->{$tag}++;
315                  if ( ! defined $last_visible_tags->{$tag} ) {                  if ( ! defined $last_visible_tags->{$tag} ) {
316                          if ( defined $tags_data->{$tag} ) {                          if ( defined $tags_data->{$tag} ) {
317  #                               meteor( 'in-range', $tag );  #                               meteor( 'in-range', $tag );
# Line 180  sub update_visible_tags { Line 319  sub update_visible_tags {
319                                  meteor( 'read', $tag );                                  meteor( 'read', $tag );
320                                  read_tag( $tag );                                  read_tag( $tag );
321                          }                          }
                         $visible_tags->{$tag}++;  
322                  } else {                  } else {
323                          warn "## using cached data for $tag" if $debug;                          warn "## using cached data for $tag" if $debug;
324                  }                  }
# Line 190  sub update_visible_tags { Line 328  sub update_visible_tags {
328                                  meteor( 'write', $tag );                                  meteor( 'write', $tag );
329                                  write_tag( $tag );                                  write_tag( $tag );
330                  }                  }
331                    if ( -e "$secure_path/$tag" ) {
332                                    meteor( 'secure', $tag );
333                                    secure_tag( $tag );
334                    }
335          }          }
336    
337          foreach my $tag ( keys %$last_visible_tags ) {          foreach my $tag ( keys %$last_visible_tags ) {
# Line 206  my $tag_data_block; Line 348  my $tag_data_block;
348  sub read_tag_data {  sub read_tag_data {
349          my ($start_block,$rest) = @_;          my ($start_block,$rest) = @_;
350          die "no rest?" unless $rest;          die "no rest?" unless $rest;
351    
352            my $last_block = 0;
353    
354          warn "## DATA [$start_block] ", dump( $rest ) if $debug;          warn "## DATA [$start_block] ", dump( $rest ) if $debug;
355          my $tag = uc(unpack('H16',substr( $rest, 0, 8 )));          my $tag = uc(unpack('H16',substr( $rest, 0, 8 )));
356          my $blocks = ord(substr($rest,8,1));          my $blocks = ord(substr($rest,8,1));
# Line 215  sub read_tag_data { Line 360  sub read_tag_data {
360                  warn "## block ",as_hex( $block ) if $debug;                  warn "## block ",as_hex( $block ) if $debug;
361                  my $ord   = unpack('v',substr( $block, 0, 2 ));                  my $ord   = unpack('v',substr( $block, 0, 2 ));
362                  my $expected_ord = $nr + $start_block;                  my $expected_ord = $nr + $start_block;
363                  die "got block $ord, expected block $expected_ord from ",dump( $block ) if $ord != $expected_ord;                  warn "got block $ord, expected block $expected_ord from ",dump( $block ) if $ord != $expected_ord;
364                  my $data  = substr( $block, 2 );                  my $data  = substr( $block, 2 );
365                  die "data payload should be 4 bytes" if length($data) != 4;                  die "data payload should be 4 bytes" if length($data) != 4;
366                  warn sprintf "## tag %9s %02d %s |%-4s|\n", $tag, $ord, as_hex( $data ), $data;                  warn sprintf "## tag %9s %02d: %s |%-4s|\n", $tag, $ord, as_hex( $data ), $data;
367                  $tag_data_block->{$tag}->[ $ord ] = $data;                  $tag_data_block->{$tag}->[ $ord ] = $data;
368                    $last_block = $ord;
369          }          }
370          $tags_data->{ $tag } = join('', @{ $tag_data_block->{$tag} });          $tags_data->{ $tag } = join('', @{ $tag_data_block->{$tag} });
371          print "DATA $tag ",dump( $tags_data ), "\n";  
372            my $item_type_nr = ord(substr( $tags_data->{$tag}, 3, 1 ));
373            print "DATA $tag ",dump( $tags_data ), " item type: ", ( $item_type->{ $item_type_nr } || "UNKWOWN '$item_type_nr'" ), "\n";
374    
375            return $last_block + 1;
376    }
377    
378    sub decode_tag {
379            my $tag = shift;
380    
381            my $data = $tags_data->{$tag} || die "no data for $tag";
382    
383            my ( $u1, $set_item, $u2, $type, $content, $br_lib, $custom ) = unpack('C4Z16Nl>',$data);
384            my $hash = {
385                    u1 => $u1,
386                    u2 => $u2,
387                    set => ( $set_item & 0xf0 ) >> 4,
388                    total => ( $set_item & 0x0f ),
389    
390                    type => $type,
391                    content => $content,
392    
393                    branch => $br_lib >> 20,
394                    library => $br_lib & 0x000fffff,
395    
396                    custom => $custom,
397            };
398    
399            return $hash;
400  }  }
401    
402  sub read_tag {  sub read_tag {
# Line 232  sub read_tag { Line 406  sub read_tag {
406    
407          print "read_tag $tag\n";          print "read_tag $tag\n";
408    
409          cmd(          my $start_block = 0;
410                  "D6 00  0D  02      $tag   00   03     1CC4", "read $tag offset: 0 blocks: 3",  
411                  "D6 00  0F  FE  00 00  05 01   $tag    941A", sub {          while ( $start_block < $max_rfid_block ) {
412                          print "FIXME: tag $tag ready?\n";  
413                  },                  cmd(
414                  "D6 00  1F  02 00", sub { # $tag  03   00 00   04 11 00 01   01 00   31 32 33 34   02 00   35 36 37 38    531F\n";                           sprintf( "D6 00  0D  02      $tag   %02x   %02x     ffff", $start_block, $read_blocks ),
415                          read_tag_data( 0, @_ );                                  "read $tag offset: $start_block blocks: $read_blocks",
416                  },                          "D6 00  1F  02 00", sub { # $tag  03   00 00   04 11 00 01   01 00   31 32 33 34   02 00   35 36 37 38    531F\n";
417          );                                  $start_block = read_tag_data( $start_block, @_ );
418                                    warn "# read tag upto $start_block\n";
419                            },
420                            "D6 00  0F  FE  00 00  05 01   $tag    941A", sub {
421                                    print "FIXME: tag $tag ready? (expected block read instead)\n";
422                            },
423                    );
424    
425            }
426    
427            my $security;
428    
429          cmd(          cmd(
430                  "D6 00  0D  02      $tag   03   04     3970", "read $tag offset: 3 blocks: 4",                  "D6 00 0B 0A $tag 1234", "check security $tag",
431                  "D6 00  25  02 00", sub { # $tag   04                         03 00   30 30 00 00   04 00   00 00 00 00                    "D6 00 0D 0A 00", sub {
432                          read_tag_data( 3, @_ );                          my $rest = shift;
433                            my $from_tag;
434                            ( $from_tag, $security ) = ( substr($rest,0,8), substr($rest,8,1) );
435                            die "security from other tag: ",as_hex( $from_tag ) if $from_tag ne str2bytes( $tag );
436                            $security = as_hex( $security );
437                            $tags_security->{$tag} = $security;
438                            warn "# SECURITY $tag = $security\n";
439                  }                  }
440          );          );
441    
442            print "TAG $tag ", dump(decode_tag( $tag ));
443  }  }
444    
445  sub write_tag {  sub write_tag {
# Line 257  sub write_tag { Line 448  sub write_tag {
448          my $path = "$program_path/$tag";          my $path = "$program_path/$tag";
449    
450          my $data = read_file( $path );          my $data = read_file( $path );
451            my $hex_data;
452    
453            if ( $data =~ s{^hex\s+}{} ) {
454                    $hex_data = $data;
455                    $hex_data =~ s{\s+}{}g;
456            } else {
457    
458                    $data .= "\0" x ( 4 - ( length($data) % 4 ) );
459    
460          print "write_tag $tag = $data\n";                  my $max_len = $max_rfid_block * 4;
461    
462                    if ( length($data) > $max_len ) {
463                            $data = substr($data,0,$max_len);
464                            warn "strip content to $max_len bytes\n";
465                    }
466    
467                    $hex_data = unpack('H*', $data);
468            }
469    
470            my $len = length($hex_data) / 2;
471            # pad to block size
472            $hex_data .= '00' x ( 4 - $len % 4 );
473            my $blocks = sprintf('%02x', length($hex_data) / 4);
474    
475            print "write_tag $tag = ",dump( $data ), " [$len/$blocks] == $hex_data\n";
476    
477          cmd(          cmd(
478                  "D6 00  26  04  $tag  00 06 00  04 11 00 01  61 61 61 61  62 62 62 62  63 63 63 63  64 64 64 64  00 00 00 00  FD3B", "write $tag",                  "d6 00  ff  04  $tag  00 $blocks 00  $hex_data  ffff", "write $tag",
479                  "D6 00  0D  04 00  $tag  06  AFB1", sub { assert() },                  "d6 00  0d  04 00  $tag  $blocks  afb1", sub { assert() },
480          ) foreach ( 1 .. 3 ); # XXX 3M software does this three times!          ); # foreach ( 1 .. 3 ); # XXX 3m software does this three times!
481    
482          my $to = $path;          my $to = $path;
483          $to .= '.' . time();          $to .= '.' . time();
# Line 271  sub write_tag { Line 485  sub write_tag {
485          rename $path, $to;          rename $path, $to;
486          print ">> $to\n";          print ">> $to\n";
487    
488            delete $tags_data->{$tag};      # force re-read of tag
489    }
490    
491    sub secure_tag {
492            my ($tag) = @_;
493    
494            my $path = "$secure_path/$tag";
495            my $data = substr(read_file( $path ),0,2);
496    
497            cmd(
498                    "d6 00  0c  09  $tag $data 1234", "secure $tag -> $data",
499                    "d6 00  0c  09 00  $tag  1234", sub { assert() },
500            );
501    
502            my $to = $path;
503            $to .= '.' . time();
504    
505            rename $path, $to;
506            print ">> $to\n";
507  }  }
508    
509  exit;  exit;
# Line 305  sub writechunk Line 538  sub writechunk
538  {  {
539          my $str=shift;          my $str=shift;
540          my $count = $port->write($str);          my $count = $port->write($str);
541            my $len = length($str);
542            die "wrong write length $count != $len in ",as_hex( $str ) if $count != $len;
543          print "#> ", as_hex( $str ), "\t[$count]\n" if $debug;          print "#> ", as_hex( $str ), "\t[$count]\n" if $debug;
544  }  }
545    
# Line 371  sub crcccitt { Line 606  sub crcccitt {
606  sub checksum {  sub checksum {
607          my ( $bytes, $checksum ) = @_;          my ( $bytes, $checksum ) = @_;
608    
         my $xor = crcccitt( substr($bytes,1) ); # skip D6  
         warn "## checksum ",dump( $bytes, $xor, $checksum ) if $debug;  
   
609          my $len = ord(substr($bytes,2,1));          my $len = ord(substr($bytes,2,1));
610          my $len_real = length($bytes) - 1;          my $len_real = length($bytes) - 1;
611    
612          if ( $len_real != $len ) {          if ( $len_real != $len ) {
613                  print "length wrong: $len_real != $len\n";                  print "length wrong: $len_real != $len\n";
614                  $bytes = substr($bytes,0,2) . chr($len_real) . substr($bytes,4);                  $bytes = substr($bytes,0,2) . chr($len_real) . substr($bytes,3);
615          }          }
616    
617            my $xor = crcccitt( substr($bytes,1) ); # skip D6
618            warn "## checksum ",dump( $bytes, $xor, $checksum ) if $debug;
619    
620          if ( defined $checksum && $xor ne $checksum ) {          if ( defined $checksum && $xor ne $checksum ) {
621                  print "checksum doesn't match: ", as_hex($xor), " != ", as_hex($checksum), " data: ", as_hex($bytes), "\n";                  print "checksum doesn't match: ", as_hex($xor), " != ", as_hex($checksum), " data: ", as_hex($bytes), "\n";
622                  return $bytes . $xor;                  return $bytes . $xor;
# Line 392  sub checksum { Line 627  sub checksum {
627  our $dispatch;  our $dispatch;
628    
629  sub readchunk {  sub readchunk {
630          sleep 1;        # FIXME remove  #       sleep 1;        # FIXME remove
631    
632          # read header of packet          # read header of packet
633          my $header = read_bytes( 2, 'header' );          my $header = read_bytes( 2, 'header' );
# Line 421  sub readchunk { Line 656  sub readchunk {
656          warn "?? payload dispatch to ",dump( $payload, $dispatch, $to ) if $debug;          warn "?? payload dispatch to ",dump( $payload, $dispatch, $to ) if $debug;
657    
658          if ( defined $to ) {          if ( defined $to ) {
659                  my $rest = substr( $payload, length($to) );                  my $rest = substr( $payload, length($to) ) if length($to) < length($payload);
660                  warn "## DISPATCH payload to with rest", dump( $payload, $to, $rest ) if $debug;                  warn "## DISPATCH payload to with rest", dump( $payload, $to, $rest ) if $debug;
661                  $dispatch->{ $to }->( $rest );                  $dispatch->{ $to }->( $rest );
662          } else {          } else {
663                  print "NO DISPATCH for ",dump( $full ),"\n";                  print "NO DISPATCH for ",as_hex( $full ),"\n";
664          }          }
665    
666          return $data;          return $data;

Legend:
Removed from v.29  
changed lines
  Added in v.54

  ViewVC Help
Powered by ViewVC 1.1.26