File: EXTERNAL.pm

package info (click to toggle)
libauthen-sasl-perl 2.08-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 172 kB
  • ctags: 123
  • sloc: perl: 939; makefile: 34
file content (18 lines) | stat: -rw-r--r-- 352 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright (c) 2002 Graham Barr <gbarr@pobox.com>. All rights reserved.
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.

package Authen::SASL::EXTERNAL;

use strict;
use vars qw($VERSION);

$VERSION = "0.99";

sub new {
  shift;
  Authen::SASL->new(@_, mechanism => 'EXTERNAL');
}

1;