diff options
author | Max Romanov <max.romanov@nginx.com> | 2017-06-23 19:20:08 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2017-06-23 19:20:08 +0300 |
commit | 4a1b59c27a8e85fc3b03c420fbc1642ce52e96cf (patch) | |
tree | c72ab253541c53dd918afc86973192416078fceb /src/nginext/cbytes-1.6.go | |
parent | 5a43bd0bfd1eaa60dede7beb3206a53e8d008fa4 (diff) | |
download | unit-4a1b59c27a8e85fc3b03c420fbc1642ce52e96cf.tar.gz unit-4a1b59c27a8e85fc3b03c420fbc1642ce52e96cf.tar.bz2 |
External Go app request processing.
Diffstat (limited to 'src/nginext/cbytes-1.6.go')
-rw-r--r-- | src/nginext/cbytes-1.6.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/nginext/cbytes-1.6.go b/src/nginext/cbytes-1.6.go new file mode 100644 index 00000000..7686dad8 --- /dev/null +++ b/src/nginext/cbytes-1.6.go @@ -0,0 +1,15 @@ +// +build !go1.7 + +/* + * Copyright (C) Max Romanov + * Copyright (C) NGINX, Inc. + */ + +package nginext + +import "C" +import "unsafe" + +func getCBytes(p []byte) unsafe.Pointer { + return unsafe.Pointer(C.CString(string(p))) // go <= 1.6 +} |