2000-09-11 11:03:10 +04:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
2000-09-13 11:07:17 +04:00
Copyright ( C ) Andrew Tridgell 2000
2000-09-11 11:03:10 +04:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*/
/*
2000-09-13 11:07:17 +04:00
test code for internal messaging
2000-09-11 11:03:10 +04:00
*/
# include "includes.h"
2000-09-12 10:57:25 +04:00
static int pong_count ;
/****************************************************************************
a useful function for testing the message system
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-09-30 21:13:37 +04:00
void pong_message ( int msg_type , struct process_id src , void * buf , size_t len )
2000-09-12 10:57:25 +04:00
{
pong_count + + ;
}
2000-09-11 11:03:10 +04:00
int main ( int argc , char * argv [ ] )
{
pid_t pid ;
2000-09-12 10:57:25 +04:00
int i , n ;
2000-11-17 00:38:24 +03:00
char buf [ 12 ] ;
2000-09-11 11:03:10 +04:00
setup_logging ( argv [ 0 ] , True ) ;
2006-01-29 01:53:04 +03:00
lp_load ( dyn_CONFIGFILE , False , False , False , True ) ;
2000-09-11 11:03:10 +04:00
message_init ( ) ;
2000-11-17 00:38:24 +03:00
if ( argc ! = 3 ) {
fprintf ( stderr , " %s: Usage - %s pid count \n " , argv [ 0 ] , argv [ 0 ] ) ;
exit ( 1 ) ;
}
2000-09-11 11:03:10 +04:00
pid = atoi ( argv [ 1 ] ) ;
2000-09-12 10:57:25 +04:00
n = atoi ( argv [ 2 ] ) ;
message_register ( MSG_PONG , pong_message ) ;
for ( i = 0 ; i < n ; i + + ) {
2005-09-30 21:13:37 +04:00
message_send_pid ( pid_to_procid ( pid ) , MSG_PING , NULL , 0 , True ) ;
2000-09-12 10:57:25 +04:00
}
2000-09-11 11:03:10 +04:00
2000-09-13 11:07:17 +04:00
while ( pong_count < i ) {
2000-09-12 10:57:25 +04:00
message_dispatch ( ) ;
2004-02-23 05:54:03 +03:00
smb_msleep ( 1 ) ;
2000-09-12 10:57:25 +04:00
}
2000-09-11 11:03:10 +04:00
2000-11-17 00:38:24 +03:00
/* Now test that the duplicate filtering code works. */
pong_count = 0 ;
safe_strcpy ( buf , " 1234567890 " , sizeof ( buf ) - 1 ) ;
for ( i = 0 ; i < n ; i + + ) {
2005-09-30 21:13:37 +04:00
message_send_pid ( pid_to_procid ( getpid ( ) ) , MSG_PING ,
NULL , 0 , False ) ;
message_send_pid ( pid_to_procid ( getpid ( ) ) , MSG_PING ,
buf , 11 , False ) ;
2000-11-17 00:38:24 +03:00
}
for ( i = 0 ; i < n ; i + + ) {
message_dispatch ( ) ;
2004-02-23 05:54:03 +03:00
smb_msleep ( 1 ) ;
2000-11-17 00:38:24 +03:00
}
if ( pong_count ! = 2 ) {
fprintf ( stderr , " Duplicate filter failed (%d). \n " , pong_count ) ;
exit ( 1 ) ;
}
2000-09-11 11:03:10 +04:00
return ( 0 ) ;
}