From 4a1b59c27a8e85fc3b03c420fbc1642ce52e96cf Mon Sep 17 00:00:00 2001 From: Max Romanov Date: Fri, 23 Jun 2017 19:20:08 +0300 Subject: External Go app request processing. --- src/nginext/cbytes-1.7.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/nginext/cbytes-1.7.go (limited to 'src/nginext/cbytes-1.7.go') diff --git a/src/nginext/cbytes-1.7.go b/src/nginext/cbytes-1.7.go new file mode 100644 index 00000000..e7d92f04 --- /dev/null +++ b/src/nginext/cbytes-1.7.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 C.CBytes(p) // go >= 1.7 +} -- cgit