kolibrios/programs/develop/ktcc/trunk/libc/net/socket.c
superturbocat2001 bed1d7841c Changed parameters of "socketpair" function in libck (ktcc)
git-svn-id: svn://kolibrios.org@8344 a494cfbc-eb01-0410-851d-a64ba20cac60
2020-12-08 18:36:23 +00:00

104 lines
2.0 KiB
C

#include <net/socket.h>
int err_code=0;
int socket(int domain, int type, int protocol)
{
asm volatile(
"int $0x40"
:"=b"(err_code)
:"a"(75), "b"(0), "c"(domain), "d"(type), "S"(protocol)
);
}
int close(int socket)
{
asm volatile(
"int $0x40"
:"=b"(err_code)
:"a"(75), "b"(1), "c"(socket)
);
}
int bind(int socket, const sockaddr *addres, int addres_len)
{
asm volatile(
"int $0x40"
:"=b"(err_code)
:"a"(75), "b"(2), "c"(socket), "d"(addres), "S"(addres_len)
);
}
int listen(int socket, int backlog)
{
asm volatile(
"int $0x40"
:"=b"(err_code)
:"a"(75), "b"(3), "c"(socket), "d"(backlog)
);
}
int connect(int socket,const sockaddr* address, int socket_len)
{
asm volatile(
"int $0x40"
:"=b"(err_code)
:"a"(75), "b"(4), "c"(socket), "d"(address), "S"(socket_len)
);
}
int accept(int socket, const sockaddr *address, int address_len)
{
asm volatile(
"int $0x40"
:"=b"(err_code)
:"a"(75), "b"(5), "c"(socket), "d"(address), "S"(address_len)
);
}
int send(int socket, const void *message, size_t msg_len, int flag)
{
asm volatile(
"int $0x40"
:"=b"(err_code)
:"a"(75), "b"(6), "c"(socket), "d"(message), "S"(msg_len), "D"(flag)
);
}
int recv(int socket, void *buffer, size_t buff_len, int flag)
{
asm volatile(
"int $0x40"
:"=b"(err_code)
:"a"(75), "b"(7), "c"(socket), "d"(buffer), "S"(buff_len), "D"(flag)
);
}
int setsockopt(int socket,const optstruct* opt)
{
asm volatile(
"int $0x40"
:"=b"(err_code)
:"a"(75), "b"(8), "c"(socket),"d"(opt)
);
}
int getsockopt(int socket, optstruct* opt)
{
asm volatile(
"int $0x40"
:"=b"(err_code)
:"a"(75), "b"(9), "c"(socket),"d"(opt)
);
}
int socketpair(int *sock1, int *sock2)
{
asm volatile(
"int $0x40"
:"=b"(*sock2), "=a"(*sock1)
:"a"(75), "b"(10)
);
err_code = *sock2;
return *sock1;
}