Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update repository URL #14

Merged
merged 1 commit into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions

name: CI
name: CI

# Controls when the workflow will run
on:
Expand All @@ -20,5 +20,7 @@ jobs:
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
- name: Test
run: go test ./...
- name: Install depends
run: go get .
- name: Build
run: go build -v ./...
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# go-pfcp-networking: PFCP Networking functionnalities on top of go-pfcp
# go-pfcp-networking: PFCP Networking functionnalities on top of go-pfcp

> [!WARNING]
> Still a Work In Progress. API may change before v1.0.0.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/louisroyer/go-pfcp-networking
module github.com/nextmn/go-pfcp-networking

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion pfcp/association.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"net"
"time"

"github.com/louisroyer/go-pfcp-networking/pfcp/api"
"github.com/nextmn/go-pfcp-networking/pfcp/api"
"github.com/wmnsk/go-pfcp/ie"
"github.com/wmnsk/go-pfcp/message"
)
Expand Down
2 changes: 1 addition & 1 deletion pfcp/association_map.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"fmt"
"sync"

"github.com/louisroyer/go-pfcp-networking/pfcp/api"
"github.com/nextmn/go-pfcp-networking/pfcp/api"
)

type associationsMap = map[string]api.PFCPAssociationInterface
Expand Down
4 changes: 2 additions & 2 deletions pfcp/entity.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"sync"
"time"

"github.com/louisroyer/go-pfcp-networking/pfcp/api"
"github.com/louisroyer/go-pfcp-networking/pfcputil"
"github.com/nextmn/go-pfcp-networking/pfcp/api"
"github.com/nextmn/go-pfcp-networking/pfcputil"
"github.com/wmnsk/go-pfcp/ie"
"github.com/wmnsk/go-pfcp/message"
)
Expand Down
2 changes: 1 addition & 1 deletion pfcp/far.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
package pfcp_networking

import (
"github.com/louisroyer/go-pfcp-networking/pfcp/api"
"github.com/nextmn/go-pfcp-networking/pfcp/api"
"github.com/wmnsk/go-pfcp/ie"
)

Expand Down
2 changes: 1 addition & 1 deletion pfcp/far_map.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"io"
"sync"

"github.com/louisroyer/go-pfcp-networking/pfcp/api"
"github.com/nextmn/go-pfcp-networking/pfcp/api"
"github.com/wmnsk/go-pfcp/ie"
)

Expand Down
2 changes: 1 addition & 1 deletion pfcp/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"log"
"net"

"github.com/louisroyer/go-pfcp-networking/pfcp/api"
"github.com/nextmn/go-pfcp-networking/pfcp/api"
"github.com/wmnsk/go-pfcp/ie"
"github.com/wmnsk/go-pfcp/message"
)
Expand Down
2 changes: 1 addition & 1 deletion pfcp/pdr.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
package pfcp_networking

import (
"github.com/louisroyer/go-pfcp-networking/pfcp/api"
"github.com/nextmn/go-pfcp-networking/pfcp/api"
"github.com/wmnsk/go-pfcp/ie"
)

Expand Down
2 changes: 1 addition & 1 deletion pfcp/pdr_map.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"sort"
"sync"

"github.com/louisroyer/go-pfcp-networking/pfcp/api"
"github.com/nextmn/go-pfcp-networking/pfcp/api"
"github.com/wmnsk/go-pfcp/ie"
)

Expand Down
4 changes: 2 additions & 2 deletions pfcp/peer.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"sync"
"time"

"github.com/louisroyer/go-pfcp-networking/pfcp/api"
"github.com/louisroyer/go-pfcp-networking/pfcputil"
"github.com/nextmn/go-pfcp-networking/pfcp/api"
"github.com/nextmn/go-pfcp-networking/pfcputil"
"github.com/wmnsk/go-pfcp/ie"
"github.com/wmnsk/go-pfcp/message"
)
Expand Down
4 changes: 2 additions & 2 deletions pfcp/received_message.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"fmt"
"net"

"github.com/louisroyer/go-pfcp-networking/pfcp/api"
"github.com/louisroyer/go-pfcp-networking/pfcputil"
"github.com/nextmn/go-pfcp-networking/pfcp/api"
"github.com/nextmn/go-pfcp-networking/pfcputil"
"github.com/wmnsk/go-pfcp/message"
)

Expand Down
2 changes: 1 addition & 1 deletion pfcp/session.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"net"
"sync"

"github.com/louisroyer/go-pfcp-networking/pfcp/api"
"github.com/nextmn/go-pfcp-networking/pfcp/api"
"github.com/wmnsk/go-pfcp/ie"
"github.com/wmnsk/go-pfcp/message"
)
Expand Down
2 changes: 1 addition & 1 deletion pfcp/session_id_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"log"
"sync"

"github.com/louisroyer/go-pfcp-networking/pfcp/api"
"github.com/nextmn/go-pfcp-networking/pfcp/api"
)

// SessionIDPool is a generator of session IDs
Expand Down
4 changes: 2 additions & 2 deletions pfcp/session_map.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import (
"fmt"
"sync"

"github.com/louisroyer/go-pfcp-networking/pfcp/api"
"github.com/nextmn/go-pfcp-networking/pfcp/api"
)

//XXX Delete old sessions instead of just creating new ones
// XXX Delete old sessions instead of just creating new ones
type sessionsMapSEID = map[api.SEID]api.PFCPSessionInterface
type sessionsMapFSEID = map[string]sessionsMapSEID
type SessionsMap struct {
Expand Down