mirror of
				https://github.com/vlang/v.git
				synced 2023-08-10 21:13:21 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			508 B
		
	
	
	
		
			V
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			508 B
		
	
	
	
		
			V
		
	
	
	
	
	
| module net
 | |
| 
 | |
| #flag -lws2_32
 | |
| #include <winsock2.h>
 | |
| #include <ws2tcpip.h>
 | |
| 
 | |
| struct C.WSAData {
 | |
| mut:
 | |
| 	wVersion u16
 | |
| 	wHighVersion u16
 | |
| 	szDescription [257]byte
 | |
| 	szSystemStatus [129]byte
 | |
| 	iMaxSockets u16
 | |
| 	iMaxUdpDg u16
 | |
| 	lpVendorInfo byteptr
 | |
| }
 | |
| 
 | |
| 
 | |
| const (
 | |
| 	wsa_v22 = 0x202 // C.MAKEWORD(2, 2)
 | |
| )
 | |
| 
 | |
| fn init() {
 | |
| 	mut wsadata := C.WSAData{}
 | |
| 	res := C.WSAStartup(wsa_v22, &wsadata)
 | |
| 	if res != 0 {
 | |
| 		panic('socket: WSAStartup failed')
 | |
| 	}
 | |
| }
 | |
| 
 | |
| fn error_code() int {
 | |
| 	return C.WSAGetLastError()
 | |
| }
 | |
| 
 | |
| pub const (
 | |
| 	msg_nosignal = 0
 | |
| )
 | 
