Skip to content

Commit c5db28f

Browse files
committed
2025.2
1 parent 08dc08b commit c5db28f

15 files changed

+162
-16
lines changed

bpm.tml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "socket"
3-
version = "2025.1"
3+
version = "2025.2"
44
authors = [ "[email protected]",]
55
license = "MIT OR Apache-2.0"
66
edition = "2018"

docs/_bind.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

docs/_recvfrom.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

docs/_sendto.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
## int sendto(unsigned char sockfd, const void *buf, size_t len, unsigned char flags, const struct sockaddr *dest_addr, socklen_t addrlen);
2+

src/_bind.s

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
.include "ch395.inc"
2+
.include "sys/socket.inc"
3+
.include "sys/socket.mac"
4+
.include "telestrat.inc"
5+
6+
.export _bind
7+
8+
.import popax
9+
.import popa
10+
11+
.importzp ptr1, ptr2, ptr3, tmp1
12+
13+
14+
;;@proto unsigned char bind(int socket, const struct sockaddr_in* addr, unsigned int addrlen);
15+
.proc _bind
16+
rts
17+
.endproc

src/_connect.s

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
.include "ch395.inc"
2-
.include "socket.inc"
3-
.include "socket.mac"
2+
.include "sys/socket.inc"
3+
.include "sys/socket.mac"
44
.include "telestrat.inc"
55

6-
76
.export _connect
87

98
.import popax
@@ -51,7 +50,7 @@
5150
clc
5251
adc ptr2
5352
bcc @S1
54-
inc ptr2+1
53+
inc ptr2 + 1
5554

5655
@S1:
5756
sta ptr2

src/_recv.s

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.include "telestrat.inc"
2-
.include "socket.mac"
2+
.include "sys/socket.mac"
33

44
.export _recv
55

@@ -15,7 +15,7 @@
1515
length := ptr2
1616
buffer := ptr1
1717
socket := tmp1
18-
flags := tmp2
18+
flags := tmp2
1919
; Drop flag
2020

2121
sta flags ; Flags stored but not managed
@@ -37,13 +37,13 @@
3737
;;@inputY High ptr to store the buffer
3838
;;@modifyMEM_RES
3939

40-
ldy ptr1
41-
ldx ptr1 + 1
40+
ldy buffer
41+
ldx buffer + 1
4242

4343
RECV socket, buffer, length
4444
tya
45-
stx ptr1 + 1
46-
ldy ptr1 + 1
45+
stx buffer + 1
46+
ldy buffer + 1
4747

4848
rts
4949
.endproc

src/_recvfrom.s

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
.include "ch395.inc"
2+
.include "sys/socket.inc"
3+
.include "sys/socket.mac"
4+
.include "telestrat.inc"
5+
6+
.export _recvfrom
7+
8+
.importzp ptr1, ptr2, ptr3, tmp1, tmp2, tmp3
9+
10+
.import popa, popax
11+
12+
.proc _recvfrom
13+
; int recvfrom(unsigned char sockfd, void *buf, size_t len, unsigned char flags, struct sockaddr *src_addr, socklen_t *addrlen);
14+
addrlen := tmp1
15+
dest_addr := ptr1
16+
flags := tmp2
17+
len := ptr2
18+
buf := ptr3
19+
sockfd := tmp3
20+
21+
sta addrlen
22+
23+
; Get dest addr
24+
jsr popax
25+
sta ptr1
26+
stx ptr1 + 1
27+
28+
jsr popa
29+
sta flags
30+
31+
jsr popax
32+
sta len
33+
stx len + 1
34+
35+
jsr popax
36+
sta buf
37+
stx buf + 1
38+
39+
jsr popa
40+
sta sockfd
41+
42+
ldy buf
43+
ldx buf + 1
44+
45+
RECV sockfd, buf, length
46+
tya
47+
stx buf + 1
48+
ldy buf + 1
49+
50+
rts
51+
.endproc

src/_send.s

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.include "telestrat.inc"
2-
.include "socket.mac"
2+
.include "sys/socket.mac"
33

44
.export _send
55

src/_sendto.s

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
.include "ch395.inc"
2+
.include "sys/socket.inc"
3+
.include "sys/socket.mac"
4+
.include "telestrat.inc"
5+
6+
.export _sendto
7+
8+
.importzp ptr1, ptr2, ptr3, tmp1, tmp2, tmp3
9+
10+
.import popa, popax
11+
12+
.proc _sendto
13+
;;@proto int sendto(unsigned char sockfd, const void *buf, size_t len, unsigned char flags, const struct sockaddr *dest_addr, socklen_t addrlen);
14+
addrlen := tmp1
15+
dest_addr := ptr1
16+
flags := tmp2
17+
len := ptr2
18+
buf := ptr3
19+
sockfd := tmp3
20+
sin_port := RESB
21+
sin_addr := RES
22+
23+
sta addrlen
24+
25+
; Get dest addr
26+
jsr popax
27+
sta dest_addr
28+
stx dest_addr + 1
29+
30+
; For compute below
31+
sta sin_addr
32+
stx sin_addr + 1
33+
34+
jsr popa
35+
sta flags
36+
37+
jsr popax
38+
sta len
39+
stx len + 1
40+
41+
jsr popax
42+
sta buf
43+
stx buf + 1
44+
45+
jsr popa
46+
sta sockfd
47+
48+
49+
50+
ldy #sockaddr_in::sin_port
51+
lda (dest_addr),y
52+
sta sin_port
53+
iny
54+
lda (dest_addr),y
55+
sta sin_port + 1
56+
57+
58+
; Compute ip addr ptr
59+
lda #sockaddr_in::sin_addr
60+
clc
61+
adc sin_addr
62+
bcc @S1
63+
inc sin_addr + 1
64+
65+
@S1:
66+
sta sin_addr
67+
68+
CONNECT sockfd, sin_addr, sin_port
69+
SEND sockfd, buf, len
70+
rts
71+
.endproc

src/_socket.s

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.include "include/socket.mac"
1+
.include "include/sys/socket.mac"
22
.include "telestrat.inc"
33

44
.export _socket

src/_socket_close.s

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.include "telestrat.inc"
2-
.include "socket.mac"
2+
.include "sys/socket.mac"
33

44
.export _socket_close
55

src/include/socket.h src/include/sys/socket.h

+6-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ struct in_addr {
1414
long s_addr; // Adresse IPv4 en format binaire (big-endian)
1515
};
1616

17+
typedef unsigned char socklen_t;
18+
1719

1820
//server.sin_addr.s_addr = inet_addr("192.168.177"); // Exemple IP (www.example.com)
1921
struct sockaddr_in {
@@ -25,7 +27,7 @@ struct sockaddr_in {
2527

2628
struct sockaddr {
2729
unsigned char sa_family; /* Address family */
28-
char sa_data[]; /* Socket address */
30+
char sa_data[14]; /* Socket address */
2931
};
3032

3133
/* Create a new socket of type TYPE in domain DOMAIN, using
@@ -43,3 +45,6 @@ unsigned int send(unsigned char sockfd, const void buf[], unsigned int len, unsi
4345
unsigned int socket_close(unsigned char sockfd);
4446

4547
unsigned char connect(unsigned char sockfd, const struct sockaddr *addr, unsigned int addrlen);
48+
49+
int recvfrom(unsigned char sockfd, void *buf, size_t len, unsigned char flags, struct sockaddr *src_addr, socklen_t *addrlen);
50+
int sendto(unsigned char sockfd, const void *buf, size_t len, unsigned char flags, const struct sockaddr *dest_addr, socklen_t addrlen);

src/include/socket.inc src/include/sys/socket.inc

-1
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,4 @@ EHOSTUNREACH = 65 ; No route to host
4141
;struct in_addr sin_addr; // Adresse IPv4
4242
sin_addr .res 4 ;long sin_addr
4343
sin_port .word ; e.g. htons(3490)
44-
4544
.endstruct
File renamed without changes.

0 commit comments

Comments
 (0)