-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathudpSend.c
65 lines (60 loc) · 1.6 KB
/
udpSend.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include <linux/module.h>
#include <linux/init.h>
#include <linux/in.h>
#include <linux/inet.h>
#include <net/sock.h>
#define SERVERPORT 5555
static struct socket *clientsocket=NULL;
static int __init client_init( void )
{
int len;
char buf[64];
struct msghdr msg;
struct iovec iov;
mm_segment_t oldfs;
struct sockaddr_in to;
printk(KERN_ERR "sendthread initialized\n");
if( sock_create( PF_INET,SOCK_DGRAM,IPPROTO_UDP,&clientsocket)<0 ){
printk( KERN_ERR "server: Error creating clientsocket.n" );
return -EIO;
}
memset(&to,0, sizeof(to));
to.sin_family = AF_INET;
to.sin_addr.s_addr = in_aton( "127.0.0.1" );
/* destination address */
to.sin_port = htons( (unsigned short)
SERVERPORT );
memset(&msg,0,sizeof(msg));
msg.msg_name = &to;
msg.msg_namelen = sizeof(to);
memcpy( buf, "hallo from kernel space", 24 );
iov.iov_base = buf;
iov.iov_len = 24;
msg.msg_control = NULL;
msg.msg_controllen = 0;
msg.msg_iov = &iov;
msg.msg_iovlen = 1;
// msg.msg_flags = MSG_NOSIGNAL;
printk(KERN_ERR " vor send\n");
oldfs = get_fs();
set_fs( KERNEL_DS );
int i = 0;
while ( i < 10){
i++;
len = sock_sendmsg( clientsocket, &msg, 24 );
}
// len = sock_sendmsg( clientsocket, &msg, 24 );
//len = sock_sendmsg( clientsocket, &msg, 24 );
//len = sock_sendmsg( clientsocket, &msg, 24 );
set_fs( oldfs );
printk( KERN_ERR "sock_sendmsg returned: %d\n", len);
return 0;
}
static void __exit client_exit( void )
{
if( clientsocket )
sock_release( clientsocket );
}
module_init( client_init );
module_exit( client_exit );
MODULE_LICENSE("GPL");