Skip to content

Commit 8a79186

Browse files
authored
Merge branch 'main' into ctl_e2e_test
2 parents 02633f8 + 8cc9468 commit 8a79186

27 files changed

+1384
-509
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ To submit a proposed change, please develop the code/fix and add new test cases.
9494
After that, run these local verifications before submitting pull request to predict the pass or
9595
fail of continuous integration.
9696

97-
* Run and pass `make gen-check`
97+
* Run and pass `make gen-check`, if want to run with sudo privileges `sudo env PATH=$PATH make gen-check`
9898
* To compile, refer to [Compile and Build Kmesh](https://kmesh.net/en/docs/developer/build-guide/)
9999
* To run unit test, refer to [Run Unit Test](https://kmesh.net/en/docs/developer/run-ut/)
100100
* To run e2e test, refer to [Run E2E Test](https://kmesh.net/en/docs/developer/e2e-guide/)
@@ -109,7 +109,7 @@ To make it easier for your PR to receive reviews, consider the reviewers will ne
109109

110110
# Membership
111111

112-
We encourage all contributors to become members. Learn more about requirements and responsibilities of membership in our [Community Membership doc](https://github.com/kmesh-net/website/blob/main/content/en/docs/community/membership.md).
112+
We encourage all contributors to become members. Learn more about requirements and responsibilities of membership in our [Community Membership doc](https://kmesh.net/docs/community/membership/).
113113

114114
If you have made contributions that meet the requirements of becoming KMesh member, simply file an [issue](https://github.com/kmesh-net/kmesh/issues/new?assignees=&labels=&projects=&template=membership-request.md&title=REQUEST%3A+New+membership+for+%3Cyour+name%3E) to apply.
115115

bpf/include/bpf_helper_defs_ext.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* If found, return 1; otherwise, return 0.
2020
*/
2121
static long (*bpf_km_header_strnstr)(
22-
struct bpf_sock_addr *ctx, const char *key, int key_sz, const char *subptr, int subptr_sz) = (void *)163;
22+
struct bpf_sock_addr *ctx, const char *key, int key_sz, const char *subptr, int subptr_sz) = (void *)175;
2323

2424
/*
2525
* Description
@@ -31,7 +31,7 @@ static long (*bpf_km_header_strnstr)(
3131
* If the strings are same, return 0.
3232
*/
3333
static long (*bpf_km_header_strncmp)(const char *key, int key_sz, const char *target, int target_sz, int opt) =
34-
(void *)164;
34+
(void *)176;
3535

3636
/*
3737
* Description
@@ -43,4 +43,4 @@ static long (*bpf_km_header_strncmp)(const char *key, int key_sz, const char *ta
4343
* A HTTP PROTO TYPE is returned on success.
4444
* **PROTO_UNKNOW** is returned if failure.
4545
*/
46-
static long (*bpf_parse_header_msg)(struct bpf_sock_addr *ctx) = (void *)165;
46+
static long (*bpf_parse_header_msg)(struct bpf_sock_addr *ctx) = (void *)177;

bpf/kmesh/bpf2go/kernelnative/enhanced/kmeshsockops_bpfeb.go

Lines changed: 54 additions & 71 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)