I'm trying to build a perl application using the SCTP transport, and am having problems receiving any packets/messages from the socket.
I've tried to connect, listen, rcvmsg, and nothing produces output to screen. I know SCTP support hasn't been around for too long, and searching this site only produces one other question.... Maybe someone has more info on using it?
I'm running ActivePerl 5.10 on a Solaris 10 Intel platform.
Here is the script.
#!/opt/ActivePerl-5.10/bin/perl -U
use Socket;
$port = 5002;
$iaddr = inet_aton('localhost');
$paddr = sockaddr_in($port, $iaddr);
$proto = getprotobyname('sctp');
socket( Server, AF_INET, SOCK_STREAM, $proto ) || die "Socket Failed:
+$!";
bind(Server, $paddr) || die "Socket Bind Failed: $!";
listen(Server, SOMAXCON) || die "Socket Listen Failed: $!";
print "SERVER started on SCTP port $port\n";
while (1)
{ recvmsg(Sock, $MSG, 1024, MSG_WAITALL) || die "Socket Recieve Fai
+led: $!";
print "Packet: ". $MSG ."\n";
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.