|
Tomcat example source code file (multicast.c)
The Tomcat multicast.c source code
/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
*
* @author Mladen Turk
* @version $Revision: 525493 $, $Date: 2007-04-04 13:25:29 +0200 (mer., 04 avr. 2007) $
*/
#include "tcn.h"
TCN_IMPLEMENT_CALL(jint, Mulicast, join)(TCN_STDARGS,
jlong sock, jlong join,
jlong iface, jlong source)
{
tcn_socket_t *s = J2P(sock, tcn_socket_t *);
apr_sockaddr_t *ja = J2P(join, apr_sockaddr_t *);
apr_sockaddr_t *ia = J2P(iface, apr_sockaddr_t *);
apr_sockaddr_t *sa = J2P(source, apr_sockaddr_t *);
UNREFERENCED_STDARGS;
return (jint)apr_mcast_join(s->sock, ja, ia, sa);
};
TCN_IMPLEMENT_CALL(jint, Mulicast, leave)(TCN_STDARGS,
jlong sock, jlong addr,
jlong iface, jlong source)
{
tcn_socket_t *s = J2P(sock, tcn_socket_t *);
apr_sockaddr_t *aa = J2P(addr, apr_sockaddr_t *);
apr_sockaddr_t *ia = J2P(iface, apr_sockaddr_t *);
apr_sockaddr_t *sa = J2P(source, apr_sockaddr_t *);
UNREFERENCED_STDARGS;
return (jint)apr_mcast_leave(s->sock, aa, ia, sa);
};
TCN_IMPLEMENT_CALL(jint, Mulicast, hops)(TCN_STDARGS,
jlong sock, jint ttl)
{
tcn_socket_t *s = J2P(sock, tcn_socket_t *);
UNREFERENCED_STDARGS;
return (jint)apr_mcast_hops(s->sock, (apr_byte_t)ttl);
};
TCN_IMPLEMENT_CALL(jint, Mulicast, loopback)(TCN_STDARGS,
jlong sock, jboolean opt)
{
tcn_socket_t *s = J2P(sock, tcn_socket_t *);
apr_byte_t on = 0;
UNREFERENCED_STDARGS;
if (opt)
on = 1;
return (jint)apr_mcast_loopback(s->sock, on);
};
TCN_IMPLEMENT_CALL(jint, Mulicast, ointerface)(TCN_STDARGS,
jlong sock, jlong iface)
{
tcn_socket_t *s = J2P(sock, tcn_socket_t *);
apr_sockaddr_t *ia = J2P(iface, apr_sockaddr_t *);
UNREFERENCED_STDARGS;
return (jint)apr_mcast_interface(s->sock, ia);
};
Other Tomcat examples (source code examples)Here is a short list of links related to this Tomcat multicast.c source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.