-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
51 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
module main | ||
|
||
import net | ||
import picoev | ||
|
||
const ( | ||
port = 8080 | ||
http_response = 'HTTP/1.1 200 OK\r\nContent-type: text/html\r\nContent-length: 18\r\n\r\nHello from Picoev!' | ||
) | ||
|
||
fn main() { | ||
println('Starting webserver on http://localhost:${port}/ ...') | ||
mut pico := picoev.new( | ||
port: port | ||
raw_cb: handle_conn | ||
) | ||
pico.serve() | ||
} | ||
|
||
fn handle_conn(data voidptr, fd int, remove_from_loop fn ()) { | ||
// setup a nonblocking tcp connection | ||
mut conn := &net.TcpConn{ | ||
sock: net.tcp_socket_from_handle_raw(fd) | ||
handle: fd | ||
is_blocking: false | ||
} | ||
|
||
mut buf := []u8{len: 4096} | ||
// read data from the tcp connection | ||
conn.read(mut buf) or { eprintln('could not read data from socket') } | ||
|
||
println('received data:') | ||
println(buf.bytestr()) | ||
|
||
conn.write(http_response.bytes()) or { eprintln('could not write response') } | ||
|
||
// remove the socket from picoev's event loop first before closing the connection | ||
remove_from_loop() | ||
conn.close() or { eprintln('could not close connection') } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters