ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/lib/AnyEvent/Handle.pm
(Generate patch)

Comparing AnyEvent/lib/AnyEvent/Handle.pm (file contents):
Revision 1.24 by root, Sat May 24 15:11:46 2008 UTC vs.
Revision 1.37 by root, Mon May 26 20:02:22 2008 UTC

2 2
3no warnings; 3no warnings;
4use strict; 4use strict;
5 5
6use AnyEvent (); 6use AnyEvent ();
7use AnyEvent::Util (); 7use AnyEvent::Util qw(WSAWOULDBLOCK);
8use Scalar::Util (); 8use Scalar::Util ();
9use Carp (); 9use Carp ();
10use Fcntl (); 10use Fcntl ();
11use Errno qw/EAGAIN EINTR/; 11use Errno qw/EAGAIN EINTR/;
12 12
13=head1 NAME 13=head1 NAME
14 14
15AnyEvent::Handle - non-blocking I/O on file handles via AnyEvent 15AnyEvent::Handle - non-blocking I/O on file handles via AnyEvent
16 16
17This module is experimental.
18
19=cut 17=cut
20 18
21our $VERSION = '0.04'; 19our $VERSION = '0.04';
22 20
23=head1 SYNOPSIS 21=head1 SYNOPSIS
25 use AnyEvent; 23 use AnyEvent;
26 use AnyEvent::Handle; 24 use AnyEvent::Handle;
27 25
28 my $cv = AnyEvent->condvar; 26 my $cv = AnyEvent->condvar;
29 27
30 my $ae_fh = AnyEvent::Handle->new (fh => \*STDIN); 28 my $handle =
31
32 #TODO
33
34 # or use the constructor to pass the callback:
35
36 my $ae_fh2 =
37 AnyEvent::Handle->new ( 29 AnyEvent::Handle->new (
38 fh => \*STDIN, 30 fh => \*STDIN,
39 on_eof => sub { 31 on_eof => sub {
40 $cv->broadcast; 32 $cv->broadcast;
41 }, 33 },
42 #TODO
43 ); 34 );
44 35
45 $cv->wait; 36 # send some request line
37 $handle->push_write ("getinfo\015\012");
38
39 # read the response line
40 $handle->push_read (line => sub {
41 my ($handle, $line) = @_;
42 warn "read line <$line>\n";
43 $cv->send;
44 });
45
46 $cv->recv;
46 47
47=head1 DESCRIPTION 48=head1 DESCRIPTION
48 49
49This module is a helper module to make it easier to do event-based I/O on 50This module is a helper module to make it easier to do event-based I/O on
50filehandles. For utility functions for doing non-blocking connects and accepts 51filehandles. For utility functions for doing non-blocking connects and accepts
90 91
91The object will not be in a usable state when this callback has been 92The object will not be in a usable state when this callback has been
92called. 93called.
93 94
94On callback entrance, the value of C<$!> contains the operating system 95On callback entrance, the value of C<$!> contains the operating system
95error (or C<ENOSPC> or C<EPIPE>). 96error (or C<ENOSPC>, C<EPIPE> or C<EBADMSG>).
97
98The callbakc should throw an exception. If it returns, then
99AnyEvent::Handle will C<croak> for you.
96 100
97While not mandatory, it is I<highly> recommended to set this callback, as 101While not mandatory, it is I<highly> recommended to set this callback, as
98you will not be notified of errors otherwise. The default simply calls 102you will not be notified of errors otherwise. The default simply calls
99die. 103die.
100 104
145 149
146When this parameter is given, it enables TLS (SSL) mode, that means it 150When this parameter is given, it enables TLS (SSL) mode, that means it
147will start making tls handshake and will transparently encrypt/decrypt 151will start making tls handshake and will transparently encrypt/decrypt
148data. 152data.
149 153
154TLS mode requires Net::SSLeay to be installed (it will be loaded
155automatically when you try to create a TLS handle).
156
150For the TLS server side, use C<accept>, and for the TLS client side of a 157For the TLS server side, use C<accept>, and for the TLS client side of a
151connection, use C<connect> mode. 158connection, use C<connect> mode.
152 159
153You can also provide your own TLS connection object, but you have 160You can also provide your own TLS connection object, but you have
154to make sure that you call either C<Net::SSLeay::set_connect_state> 161to make sure that you call either C<Net::SSLeay::set_connect_state>
155or C<Net::SSLeay::set_accept_state> on it before you pass it to 162or C<Net::SSLeay::set_accept_state> on it before you pass it to
156AnyEvent::Handle. 163AnyEvent::Handle.
157 164
165See the C<starttls> method if you need to start TLs negotiation later.
166
158=item tls_ctx => $ssl_ctx 167=item tls_ctx => $ssl_ctx
159 168
160Use the given Net::SSLeay::CTX object to create the new TLS connection 169Use the given Net::SSLeay::CTX object to create the new TLS connection
161(unless a connection object was specified directly). If this parameter is 170(unless a connection object was specified directly). If this parameter is
162missing, then AnyEvent::Handle will use C<AnyEvent::Handle::TLS_CTX>. 171missing, then AnyEvent::Handle will use C<AnyEvent::Handle::TLS_CTX>.
203 { 212 {
204 local $!; 213 local $!;
205 $self->_shutdown; 214 $self->_shutdown;
206 } 215 }
207 216
208 if ($self->{on_error}) {
209 $self->{on_error}($self); 217 $self->{on_error}($self)
210 } else { 218 if $self->{on_error};
219
211 die "AnyEvent::Handle uncaught fatal error: $!"; 220 Carp::croak "AnyEvent::Handle uncaught fatal error: $!";
212 }
213} 221}
214 222
215=item $fh = $handle->fh 223=item $fh = $handle->fh
216 224
217This method returns the file handle of the L<AnyEvent::Handle> object. 225This method returns the file handle of the L<AnyEvent::Handle> object.
282=cut 290=cut
283 291
284sub _drain_wbuf { 292sub _drain_wbuf {
285 my ($self) = @_; 293 my ($self) = @_;
286 294
287 unless ($self->{ww}) { 295 if (!$self->{ww} && length $self->{wbuf}) {
296
288 Scalar::Util::weaken $self; 297 Scalar::Util::weaken $self;
298
289 my $cb = sub { 299 my $cb = sub {
290 my $len = syswrite $self->{fh}, $self->{wbuf}; 300 my $len = syswrite $self->{fh}, $self->{wbuf};
291 301
292 if ($len > 0) { 302 if ($len >= 0) {
293 substr $self->{wbuf}, 0, $len, ""; 303 substr $self->{wbuf}, 0, $len, "";
294 304
295 $self->{on_drain}($self) 305 $self->{on_drain}($self)
296 if $self->{low_water_mark} >= length $self->{wbuf} 306 if $self->{low_water_mark} >= length $self->{wbuf}
297 && $self->{on_drain}; 307 && $self->{on_drain};
298 308
299 delete $self->{ww} unless length $self->{wbuf}; 309 delete $self->{ww} unless length $self->{wbuf};
300 } elsif ($! != EAGAIN && $! != EINTR) { 310 } elsif ($! != EAGAIN && $! != EINTR && $! != WSAWOULDBLOCK) {
301 $self->error; 311 $self->error;
302 } 312 }
303 }; 313 };
304 314
315 # try to write data immediately
316 $cb->();
317
318 # if still data left in wbuf, we need to poll
305 $self->{ww} = AnyEvent->io (fh => $self->{fh}, poll => "w", cb => $cb); 319 $self->{ww} = AnyEvent->io (fh => $self->{fh}, poll => "w", cb => $cb)
306 320 if length $self->{wbuf};
307 $cb->($self);
308 }; 321 };
322}
323
324our %WH;
325
326sub register_write_type($$) {
327 $WH{$_[0]} = $_[1];
309} 328}
310 329
311sub push_write { 330sub push_write {
312 my $self = shift; 331 my $self = shift;
332
333 if (@_ > 1) {
334 my $type = shift;
335
336 @_ = ($WH{$type} or Carp::croak "unsupported type passed to AnyEvent::Handle::push_write")
337 ->($self, @_);
338 }
313 339
314 if ($self->{filter_w}) { 340 if ($self->{filter_w}) {
315 $self->{filter_w}->($self, \$_[0]); 341 $self->{filter_w}->($self, \$_[0]);
316 } else { 342 } else {
317 $self->{wbuf} .= $_[0]; 343 $self->{wbuf} .= $_[0];
318 $self->_drain_wbuf; 344 $self->_drain_wbuf;
319 } 345 }
320} 346}
347
348=item $handle->push_write (type => @args)
349
350=item $handle->unshift_write (type => @args)
351
352Instead of formatting your data yourself, you can also let this module do
353the job by specifying a type and type-specific arguments.
354
355Predefined types are (if you have ideas for additional types, feel free to
356drop by and tell us):
357
358=over 4
359
360=item netstring => $string
361
362Formats the given value as netstring
363(http://cr.yp.to/proto/netstrings.txt, this is not a recommendation to use them).
364
365=back
366
367=cut
368
369register_write_type netstring => sub {
370 my ($self, $string) = @_;
371
372 sprintf "%d:%s,", (length $string), $string
373};
374
375=item AnyEvent::Handle::register_write_type type => $coderef->($self, @args)
376
377This function (not method) lets you add your own types to C<push_write>.
378Whenever the given C<type> is used, C<push_write> will invoke the code
379reference with the handle object and the remaining arguments.
380
381The code reference is supposed to return a single octet string that will
382be appended to the write buffer.
383
384Note that this is a function, and all types registered this way will be
385global, so try to use unique names.
386
387=cut
321 388
322############################################################################# 389#############################################################################
323 390
324=back 391=back
325 392
404 471
405 if ( 472 if (
406 defined $self->{rbuf_max} 473 defined $self->{rbuf_max}
407 && $self->{rbuf_max} < length $self->{rbuf} 474 && $self->{rbuf_max} < length $self->{rbuf}
408 ) { 475 ) {
409 $! = &Errno::ENOSPC; return $self->error; 476 $! = &Errno::ENOSPC;
477 $self->error;
410 } 478 }
411 479
412 return if $self->{in_drain}; 480 return if $self->{in_drain};
413 local $self->{in_drain} = 1; 481 local $self->{in_drain} = 1;
414 482
415 while (my $len = length $self->{rbuf}) { 483 while (my $len = length $self->{rbuf}) {
416 no strict 'refs'; 484 no strict 'refs';
417 if (my $cb = shift @{ $self->{queue} }) { 485 if (my $cb = shift @{ $self->{queue} }) {
418 if (!$cb->($self)) { 486 unless ($cb->($self)) {
419 if ($self->{eof}) { 487 if ($self->{eof}) {
420 # no progress can be made (not enough data and no data forthcoming) 488 # no progress can be made (not enough data and no data forthcoming)
421 $! = &Errno::EPIPE; return $self->error; 489 $! = &Errno::EPIPE;
490 $self->error;
422 } 491 }
423 492
424 unshift @{ $self->{queue} }, $cb; 493 unshift @{ $self->{queue} }, $cb;
425 return; 494 return;
426 } 495 }
432 && $len == length $self->{rbuf} # and no data has been consumed 501 && $len == length $self->{rbuf} # and no data has been consumed
433 && !@{ $self->{queue} } # and the queue is still empty 502 && !@{ $self->{queue} } # and the queue is still empty
434 && $self->{on_read} # and we still want to read data 503 && $self->{on_read} # and we still want to read data
435 ) { 504 ) {
436 # then no progress can be made 505 # then no progress can be made
437 $! = &Errno::EPIPE; return $self->error; 506 $! = &Errno::EPIPE;
507 $self->error;
438 } 508 }
439 } else { 509 } else {
440 # read side becomes idle 510 # read side becomes idle
441 delete $self->{rw}; 511 delete $self->{rw};
442 return; 512 return;
500interested in (which can be none at all) and return a true value. After returning 570interested in (which can be none at all) and return a true value. After returning
501true, it will be removed from the queue. 571true, it will be removed from the queue.
502 572
503=cut 573=cut
504 574
575our %RH;
576
577sub register_read_type($$) {
578 $RH{$_[0]} = $_[1];
579}
580
505sub push_read { 581sub push_read {
506 my ($self, $cb) = @_; 582 my $self = shift;
583 my $cb = pop;
584
585 if (@_) {
586 my $type = shift;
587
588 $cb = ($RH{$type} or Carp::croak "unsupported type passed to AnyEvent::Handle::push_read")
589 ->($self, $cb, @_);
590 }
507 591
508 push @{ $self->{queue} }, $cb; 592 push @{ $self->{queue} }, $cb;
509 $self->_drain_rbuf; 593 $self->_drain_rbuf;
510} 594}
511 595
512sub unshift_read { 596sub unshift_read {
513 my ($self, $cb) = @_; 597 my $self = shift;
598 my $cb = pop;
514 599
600 if (@_) {
601 my $type = shift;
602
603 $cb = ($RH{$type} or Carp::croak "unsupported type passed to AnyEvent::Handle::unshift_read")
604 ->($self, $cb, @_);
605 }
606
607
515 push @{ $self->{queue} }, $cb; 608 unshift @{ $self->{queue} }, $cb;
516 $self->_drain_rbuf; 609 $self->_drain_rbuf;
517} 610}
518 611
519=item $handle->push_read_chunk ($len, $cb->($self, $data)) 612=item $handle->push_read (type => @args, $cb)
520 613
521=item $handle->unshift_read_chunk ($len, $cb->($self, $data)) 614=item $handle->unshift_read (type => @args, $cb)
522 615
523Append the given callback to the end of the queue (C<push_read_chunk>) or 616Instead of providing a callback that parses the data itself you can chose
524prepend it (C<unshift_read_chunk>). 617between a number of predefined parsing formats, for chunks of data, lines
618etc.
525 619
526The callback will be called only once C<$len> bytes have been read, and 620Predefined types are (if you have ideas for additional types, feel free to
527these C<$len> bytes will be passed to the callback. 621drop by and tell us):
528 622
529=cut 623=over 4
530 624
531sub _read_chunk($$) { 625=item chunk => $octets, $cb->($self, $data)
626
627Invoke the callback only once C<$octets> bytes have been read. Pass the
628data read to the callback. The callback will never be called with less
629data.
630
631Example: read 2 bytes.
632
633 $handle->push_read (chunk => 2, sub {
634 warn "yay ", unpack "H*", $_[1];
635 });
636
637=cut
638
639register_read_type chunk => sub {
532 my ($self, $len, $cb) = @_; 640 my ($self, $cb, $len) = @_;
533 641
534 sub { 642 sub {
535 $len <= length $_[0]{rbuf} or return; 643 $len <= length $_[0]{rbuf} or return;
536 $cb->($_[0], substr $_[0]{rbuf}, 0, $len, ""); 644 $cb->($_[0], substr $_[0]{rbuf}, 0, $len, "");
537 1 645 1
538 } 646 }
539} 647};
540 648
649# compatibility with older API
541sub push_read_chunk { 650sub push_read_chunk {
542 $_[0]->push_read (&_read_chunk); 651 $_[0]->push_read (chunk => $_[1], $_[2]);
543} 652}
544
545 653
546sub unshift_read_chunk { 654sub unshift_read_chunk {
547 $_[0]->unshift_read (&_read_chunk); 655 $_[0]->unshift_read (chunk => $_[1], $_[2]);
548} 656}
549 657
550=item $handle->push_read_line ([$eol, ]$cb->($self, $line, $eol)) 658=item line => [$eol, ]$cb->($self, $line, $eol)
551
552=item $handle->unshift_read_line ([$eol, ]$cb->($self, $line, $eol))
553
554Append the given callback to the end of the queue (C<push_read_line>) or
555prepend it (C<unshift_read_line>).
556 659
557The callback will be called only once a full line (including the end of 660The callback will be called only once a full line (including the end of
558line marker, C<$eol>) has been read. This line (excluding the end of line 661line marker, C<$eol>) has been read. This line (excluding the end of line
559marker) will be passed to the callback as second argument (C<$line>), and 662marker) will be passed to the callback as second argument (C<$line>), and
560the end of line marker as the third argument (C<$eol>). 663the end of line marker as the third argument (C<$eol>).
571Partial lines at the end of the stream will never be returned, as they are 674Partial lines at the end of the stream will never be returned, as they are
572not marked by the end of line marker. 675not marked by the end of line marker.
573 676
574=cut 677=cut
575 678
576sub _read_line($$) { 679register_read_type line => sub {
577 my $self = shift; 680 my ($self, $cb, $eol) = @_;
578 my $cb = pop;
579 my $eol = @_ ? shift : qr|(\015?\012)|;
580 my $pos;
581 681
682 $eol = qr|(\015?\012)| if @_ < 3;
582 $eol = quotemeta $eol unless ref $eol; 683 $eol = quotemeta $eol unless ref $eol;
583 $eol = qr|^(.*?)($eol)|s; 684 $eol = qr|^(.*?)($eol)|s;
584 685
585 sub { 686 sub {
586 $_[0]{rbuf} =~ s/$eol// or return; 687 $_[0]{rbuf} =~ s/$eol// or return;
587 688
588 $cb->($_[0], $1, $2); 689 $cb->($_[0], $1, $2);
589 1 690 1
590 } 691 }
591} 692};
592 693
694# compatibility with older API
593sub push_read_line { 695sub push_read_line {
594 $_[0]->push_read (&_read_line); 696 my $self = shift;
697 $self->push_read (line => @_);
595} 698}
596 699
597sub unshift_read_line { 700sub unshift_read_line {
598 $_[0]->unshift_read (&_read_line); 701 my $self = shift;
702 $self->unshift_read (line => @_);
599} 703}
704
705=item netstring => $cb->($string)
706
707A netstring (http://cr.yp.to/proto/netstrings.txt, this is not an endorsement).
708
709Throws an error with C<$!> set to EBADMSG on format violations.
710
711=cut
712
713register_read_type netstring => sub {
714 my ($self, $cb) = @_;
715
716 sub {
717 unless ($_[0]{rbuf} =~ s/^(0|[1-9][0-9]*)://) {
718 if ($_[0]{rbuf} =~ /[^0-9]/) {
719 $! = &Errno::EBADMSG;
720 $self->error;
721 }
722 return;
723 }
724
725 my $len = $1;
726
727 $self->unshift_read (chunk => $len, sub {
728 my $string = $_[1];
729 $_[0]->unshift_read (chunk => 1, sub {
730 if ($_[1] eq ",") {
731 $cb->($_[0], $string);
732 } else {
733 $! = &Errno::EBADMSG;
734 $self->error;
735 }
736 });
737 });
738
739 1
740 }
741};
742
743=item regex => $accept[, $reject[, $skip], $cb->($data)
744
745Makes a regex match against the regex object C<$accept> and returns
746everything up to and including the match.
747
748Example: read a single line terminated by '\n'.
749
750 $handle->push_read (regex => qr<\n>, sub { ... });
751
752If C<$reject> is given and not undef, then it determines when the data is
753to be rejected: it is matched against the data when the C<$accept> regex
754does not match and generates an C<EBADMSG> error when it matches. This is
755useful to quickly reject wrong data (to avoid waiting for a timeout or a
756receive buffer overflow).
757
758Example: expect a single decimal number followed by whitespace, reject
759anything else (not the use of an anchor).
760
761 $handle->push_read (regex => qr<^[0-9]+\s>, qr<[^0-9]>, sub { ... });
762
763If C<$skip> is given and not C<undef>, then it will be matched against
764the receive buffer when neither C<$accept> nor C<$reject> match,
765and everything preceding and including the match will be accepted
766unconditionally. This is useful to skip large amounts of data that you
767know cannot be matched, so that the C<$accept> or C<$reject> regex do not
768have to start matching from the beginning. This is purely an optimisation
769and is usually worth only when you expect more than a few kilobytes.
770
771Example: expect a http header, which ends at C<\015\012\015\012>. Since we
772expect the header to be very large (it isn't in practise, but...), we use
773a skip regex to skip initial portions. The skip regex is tricky in that
774it only accepts something not ending in either \015 or \012, as these are
775required for the accept regex.
776
777 $handle->push_read (regex =>
778 qr<\015\012\015\012>,
779 undef, # no reject
780 qr<^.*[^\015\012]>,
781 sub { ... });
782
783=cut
784
785register_read_type regex => sub {
786 my ($self, $cb, $accept, $reject, $skip) = @_;
787
788 my $data;
789 my $rbuf = \$self->{rbuf};
790
791 sub {
792 # accept
793 if ($$rbuf =~ $accept) {
794 $data .= substr $$rbuf, 0, $+[0], "";
795 $cb->($self, $data);
796 return 1;
797 }
798
799 # reject
800 if ($reject && $$rbuf =~ $reject) {
801 $! = &Errno::EBADMSG;
802 $self->error;
803 }
804
805 # skip
806 if ($skip && $$rbuf =~ $skip) {
807 $data .= substr $$rbuf, 0, $+[0], "";
808 }
809
810 ()
811 }
812};
813
814=back
815
816=item AnyEvent::Handle::register_read_type type => $coderef->($self, $cb, @args)
817
818This function (not method) lets you add your own types to C<push_read>.
819
820Whenever the given C<type> is used, C<push_read> will invoke the code
821reference with the handle object, the callback and the remaining
822arguments.
823
824The code reference is supposed to return a callback (usually a closure)
825that works as a plain read callback (see C<< ->push_read ($cb) >>).
826
827It should invoke the passed callback when it is done reading (remember to
828pass C<$self> as first argument as all other callbacks do that).
829
830Note that this is a function, and all types registered this way will be
831global, so try to use unique names.
832
833For examples, see the source of this module (F<perldoc -m AnyEvent::Handle>,
834search for C<register_read_type>)).
600 835
601=item $handle->stop_read 836=item $handle->stop_read
602 837
603=item $handle->start_read 838=item $handle->start_read
604 839
633 } elsif (defined $len) { 868 } elsif (defined $len) {
634 delete $self->{rw}; 869 delete $self->{rw};
635 $self->{eof} = 1; 870 $self->{eof} = 1;
636 $self->_drain_rbuf; 871 $self->_drain_rbuf;
637 872
638 } elsif ($! != EAGAIN && $! != EINTR) { 873 } elsif ($! != EAGAIN && $! != EINTR && $! != &AnyEvent::Util::WSAWOULDBLOCK) {
639 return $self->error; 874 return $self->error;
640 } 875 }
641 }); 876 });
642 } 877 }
643} 878}
673 908
674 # all others are fine for our purposes 909 # all others are fine for our purposes
675 } 910 }
676} 911}
677 912
913=item $handle->starttls ($tls[, $tls_ctx])
914
915Instead of starting TLS negotiation immediately when the AnyEvent::Handle
916object is created, you can also do that at a later time by calling
917C<starttls>.
918
919The first argument is the same as the C<tls> constructor argument (either
920C<"connect">, C<"accept"> or an existing Net::SSLeay object).
921
922The second argument is the optional C<Net::SSLeay::CTX> object that is
923used when AnyEvent::Handle has to create its own TLS connection object.
924
925=cut
926
678# TODO: maybe document... 927# TODO: maybe document...
679sub starttls { 928sub starttls {
680 my ($self, $ssl, $ctx) = @_; 929 my ($self, $ssl, $ctx) = @_;
930
931 $self->stoptls;
681 932
682 if ($ssl eq "accept") { 933 if ($ssl eq "accept") {
683 $ssl = Net::SSLeay::new ($ctx || TLS_CTX ()); 934 $ssl = Net::SSLeay::new ($ctx || TLS_CTX ());
684 Net::SSLeay::set_accept_state ($ssl); 935 Net::SSLeay::set_accept_state ($ssl);
685 } elsif ($ssl eq "connect") { 936 } elsif ($ssl eq "connect") {
691 942
692 # basically, this is deep magic (because SSL_read should have the same issues) 943 # basically, this is deep magic (because SSL_read should have the same issues)
693 # but the openssl maintainers basically said: "trust us, it just works". 944 # but the openssl maintainers basically said: "trust us, it just works".
694 # (unfortunately, we have to hardcode constants because the abysmally misdesigned 945 # (unfortunately, we have to hardcode constants because the abysmally misdesigned
695 # and mismaintained ssleay-module doesn't even offer them). 946 # and mismaintained ssleay-module doesn't even offer them).
947 # http://www.mail-archive.com/openssl-dev@openssl.org/msg22420.html
696 Net::SSLeay::CTX_set_mode ($self->{tls}, 948 Net::SSLeay::CTX_set_mode ($self->{tls},
697 (eval { Net::SSLeay::MODE_ENABLE_PARTIAL_WRITE () } || 1) 949 (eval { local $SIG{__DIE__}; Net::SSLeay::MODE_ENABLE_PARTIAL_WRITE () } || 1)
698 | (eval { Net::SSLeay::MODE_ACCEPT_MOVING_WRITE_BUFFER () } || 2)); 950 | (eval { local $SIG{__DIE__}; Net::SSLeay::MODE_ACCEPT_MOVING_WRITE_BUFFER () } || 2));
699 951
700 $self->{tls_rbio} = Net::SSLeay::BIO_new (Net::SSLeay::BIO_s_mem ()); 952 $self->{tls_rbio} = Net::SSLeay::BIO_new (Net::SSLeay::BIO_s_mem ());
701 $self->{tls_wbio} = Net::SSLeay::BIO_new (Net::SSLeay::BIO_s_mem ()); 953 $self->{tls_wbio} = Net::SSLeay::BIO_new (Net::SSLeay::BIO_s_mem ());
702 954
703 Net::SSLeay::set_bio ($ssl, $self->{tls_rbio}, $self->{tls_wbio}); 955 Net::SSLeay::set_bio ($ssl, $self->{tls_rbio}, $self->{tls_wbio});
710 Net::SSLeay::BIO_write ($_[0]{tls_rbio}, ${$_[1]}); 962 Net::SSLeay::BIO_write ($_[0]{tls_rbio}, ${$_[1]});
711 &_dotls; 963 &_dotls;
712 }; 964 };
713} 965}
714 966
967=item $handle->stoptls
968
969Destroys the SSL connection, if any. Partial read or write data will be
970lost.
971
972=cut
973
974sub stoptls {
975 my ($self) = @_;
976
977 Net::SSLeay::free (delete $self->{tls}) if $self->{tls};
978 delete $self->{tls_rbio};
979 delete $self->{tls_wbio};
980 delete $self->{tls_wbuf};
981 delete $self->{filter_r};
982 delete $self->{filter_w};
983}
984
715sub DESTROY { 985sub DESTROY {
716 my $self = shift; 986 my $self = shift;
717 987
718 Net::SSLeay::free (delete $self->{tls}) if $self->{tls}; 988 $self->stoptls;
719} 989}
720 990
721=item AnyEvent::Handle::TLS_CTX 991=item AnyEvent::Handle::TLS_CTX
722 992
723This function creates and returns the Net::SSLeay::CTX object used by 993This function creates and returns the Net::SSLeay::CTX object used by

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines