forked from External/grumble
Migrate from mumbleapp.com to mumble.info.
This commit is contained in:
parent
48765ff1e8
commit
8302bb2b08
12 changed files with 33 additions and 33 deletions
|
|
@ -24,6 +24,6 @@ and on Windows, do something like this (for cmd.exe):
|
|||
|
||||
Then, it's time to install Grumble. The following line should do the trick:
|
||||
|
||||
$ go get mumbleapp.com/grumble
|
||||
$ go get mumble.info/grumble
|
||||
|
||||
And that should be it. Grumble has been built, and is available in $GOPATH/bin as 'grumble'.
|
||||
|
|
@ -6,7 +6,7 @@ package main
|
|||
|
||||
import (
|
||||
"encoding/hex"
|
||||
"mumbleapp.com/grumble/pkg/acl"
|
||||
"mumble.info/grumble/pkg/acl"
|
||||
)
|
||||
|
||||
// A Mumble channel
|
||||
|
|
|
|||
|
|
@ -13,10 +13,10 @@ import (
|
|||
"errors"
|
||||
"io"
|
||||
"log"
|
||||
"mumbleapp.com/grumble/pkg/acl"
|
||||
"mumbleapp.com/grumble/pkg/cryptstate"
|
||||
"mumbleapp.com/grumble/pkg/mumbleproto"
|
||||
"mumbleapp.com/grumble/pkg/packetdata"
|
||||
"mumble.info/grumble/pkg/acl"
|
||||
"mumble.info/grumble/pkg/cryptstate"
|
||||
"mumble.info/grumble/pkg/mumbleproto"
|
||||
"mumble.info/grumble/pkg/packetdata"
|
||||
"net"
|
||||
"runtime"
|
||||
"time"
|
||||
|
|
|
|||
10
freeze.go
10
freeze.go
|
|
@ -10,11 +10,11 @@ import (
|
|||
"io"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"mumbleapp.com/grumble/pkg/acl"
|
||||
"mumbleapp.com/grumble/pkg/ban"
|
||||
"mumbleapp.com/grumble/pkg/freezer"
|
||||
"mumbleapp.com/grumble/pkg/mumbleproto"
|
||||
"mumbleapp.com/grumble/pkg/serverconf"
|
||||
"mumble.info/grumble/pkg/acl"
|
||||
"mumble.info/grumble/pkg/ban"
|
||||
"mumble.info/grumble/pkg/freezer"
|
||||
"mumble.info/grumble/pkg/mumbleproto"
|
||||
"mumble.info/grumble/pkg/serverconf"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strconv"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ package main
|
|||
|
||||
import (
|
||||
"code.google.com/p/goprotobuf/proto"
|
||||
"mumbleapp.com/grumble/pkg/replacefile"
|
||||
"mumble.info/grumble/pkg/replacefile"
|
||||
"io/ioutil"
|
||||
"path/filepath"
|
||||
"strconv"
|
||||
|
|
|
|||
|
|
@ -8,8 +8,8 @@ import (
|
|||
"flag"
|
||||
"fmt"
|
||||
"log"
|
||||
"mumbleapp.com/grumble/pkg/blobstore"
|
||||
"mumbleapp.com/grumble/pkg/logtarget"
|
||||
"mumble.info/grumble/pkg/blobstore"
|
||||
"mumble.info/grumble/pkg/logtarget"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"regexp"
|
||||
|
|
|
|||
|
|
@ -9,10 +9,10 @@ import (
|
|||
"crypto/aes"
|
||||
"crypto/tls"
|
||||
"fmt"
|
||||
"mumbleapp.com/grumble/pkg/acl"
|
||||
"mumbleapp.com/grumble/pkg/ban"
|
||||
"mumbleapp.com/grumble/pkg/freezer"
|
||||
"mumbleapp.com/grumble/pkg/mumbleproto"
|
||||
"mumble.info/grumble/pkg/acl"
|
||||
"mumble.info/grumble/pkg/ban"
|
||||
"mumble.info/grumble/pkg/freezer"
|
||||
"mumble.info/grumble/pkg/mumbleproto"
|
||||
"net"
|
||||
"time"
|
||||
)
|
||||
|
|
|
|||
|
|
@ -13,8 +13,8 @@ import (
|
|||
"database/sql"
|
||||
"errors"
|
||||
"log"
|
||||
"mumbleapp.com/grumble/pkg/acl"
|
||||
"mumbleapp.com/grumble/pkg/ban"
|
||||
"mumble.info/grumble/pkg/acl"
|
||||
"mumble.info/grumble/pkg/ban"
|
||||
"net"
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ package cryptstate
|
|||
import (
|
||||
"crypto/aes"
|
||||
"crypto/cipher"
|
||||
"mumbleapp.com/grumble/pkg/cryptstate/ocb2"
|
||||
"mumble.info/grumble/pkg/cryptstate/ocb2"
|
||||
)
|
||||
|
||||
// ocb2Mode implements the OCB2-AES128 CryptoMode
|
||||
|
|
|
|||
16
server.go
16
server.go
|
|
@ -17,14 +17,14 @@ import (
|
|||
"fmt"
|
||||
"hash"
|
||||
"log"
|
||||
"mumbleapp.com/grumble/pkg/acl"
|
||||
"mumbleapp.com/grumble/pkg/ban"
|
||||
"mumbleapp.com/grumble/pkg/freezer"
|
||||
"mumbleapp.com/grumble/pkg/htmlfilter"
|
||||
"mumbleapp.com/grumble/pkg/logtarget"
|
||||
"mumbleapp.com/grumble/pkg/mumbleproto"
|
||||
"mumbleapp.com/grumble/pkg/serverconf"
|
||||
"mumbleapp.com/grumble/pkg/sessionpool"
|
||||
"mumble.info/grumble/pkg/acl"
|
||||
"mumble.info/grumble/pkg/ban"
|
||||
"mumble.info/grumble/pkg/freezer"
|
||||
"mumble.info/grumble/pkg/htmlfilter"
|
||||
"mumble.info/grumble/pkg/logtarget"
|
||||
"mumble.info/grumble/pkg/mumbleproto"
|
||||
"mumble.info/grumble/pkg/serverconf"
|
||||
"mumble.info/grumble/pkg/sessionpool"
|
||||
"net"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ package main
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"mumbleapp.com/grumble/pkg/logtarget"
|
||||
"mumble.info/grumble/pkg/logtarget"
|
||||
"os"
|
||||
"os/signal"
|
||||
"syscall"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
package main
|
||||
|
||||
import "mumbleapp.com/grumble/pkg/acl"
|
||||
import "mumble.info/grumble/pkg/acl"
|
||||
|
||||
// A VoiceTarget holds information about a single
|
||||
// VoiceTarget entry of a Client.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue