Thomas Mangin
Thomas Mangin
https://github.com/Exa-Networks/exabgp/commit/4aa06e4358e81696f819a9f96f15ac45f85831af Need a proper solution
Section 14.10 of RFC 2616 / 6.1 of RFC 7230 does have a rule for header stripping, it is not implemented. The headers should be passed to the backend processess...
### Describe the bug The compiler did not warn me of a programming mistake or generated some invalid code ### Expected Behavior The v compiler not crashing ### Current Behavior...
The current code only implements raw mode features for Linux. This patch split the definition of the termios structure per os, allowing to use of the Linux code with other...
move the tcgetattr and tcsetattr functions in a new termio module. The code needed refactoring as different OS have different fields size, position and number for the C.termios structure, which...
### Describe the bug when an struct has a function `str() string` and is called with a mut object, it will generate call to `ptr_str` and not the object own...
### Describe the bug The following code generates a warning when I think it should not ```v struct Inner { ptr &u8 } struct Outter { Inner mut: size int...
### Describe the bug I changed some maps from using string indexing to using an enum. The code was working with strings. Using the enum, it is now crashing. Replacing...
### Describe the bug V will modify a struct pointer if passed as mut to a function. ### Expected Behavior The value does not change. The current behaviour can be...
It is possible to create funny rules for flowspec with, for example, a source IP as IPv4 and a destination IP as IPv6. It is obviously not going to match...