The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
BEGIN {
$Net::MQTT::Message::PingResp::VERSION = '1.110200';
}
# ABSTRACT: Perl module to represent an MQTT PingResp message
sub message_type {
13
}
1;
__END__
=pod
=head1 NAME
Net::MQTT::Message::PingResp - Perl module to represent an MQTT PingResp message
=head1 VERSION
version 1.110200
=head1 SYNOPSIS
# instantiated by Net::MQTT::Message
=head1 DESCRIPTION
This module encapsulates a single MQTT Ping Response message. It is a
specific subclass used by L<Net::MQTT::Message> and should not
need to be instantiated directly.
=head1 AUTHOR
Mark Hindess <soft-cpan@temporalanomaly.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Mark Hindess.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut